Faux Pas and Xcode 10

Issue #121 new
高海峰 created an issue

Faux Pas doesn't work on Xcode 10's new build system Are there any ways to pass the xcodebuild argument " -UseModernBuildSystem=NO" to Faux Pas?

Comments (2)

  1. Dan Jackson

    Thanks for filing this, it's helped me. I found extraXcodebuildArgs in the Faux Pas configuration, and was able to pass that argument there to unblock me.

  2. 高海峰 reporter

    I still cannot find any way to make it work on command line.

    --extraXcodebuildArgs UseModernBuildSystem=NO will pass UseModernBuildSystem=NO to xcodebuild, but it is wrong because the correct argument is -UseModernBuildSystem=NO

    --extraXcodebuildArgs -UseModernBuildSystem=NO fauxpas will treat -UseModernBuildSystem=NO as its own parameter, so it will not pass anything to xcodebuild.

  3. Log in to comment