You can list all the keys and values of the project assembly parameters using the command
xcodebuild -showBuildSettings
Then find one or more keys that you want to override, for example. ENABLE_BITCODE. These keys can be included as parameters in the build command like this:
xcodebuild -target <your target> -configuration <your configuration> ENABLE_BITCODE=NO
source
share