Is there a way to turn off the new objc stubs optimizations in Xcode 14?

My app depends on some precompiled libraries that aren't built with Xcode 14 and I'm running into linker errors when building for device like the following:

Undefined symbol: _objc_msgSend$CGColor

Undefined symbol: _objc_msgSend$CGImage

Undefined symbol: _objc_msgSend$CGPointValue

Undefined symbol: _objc_msgSend$CGRectValue

Undefined symbol: _objc_msgSend$CPUArchForCPUType:subType:

Undefined symbol: _objc_msgSend$HTTPBody

Undefined symbol: _objc_msgSend$HTTPCookieRepresentationForDomain:

Undefined symbol: _objc_msgSend$HTTPHeaders

Undefined symbol: _objc_msgSend$HTTPMaximumConnectionsPerHost

Undefined symbol: _objc_msgSend$HTTPMethod

Can I turn off this optimization?