ERROR Error during SonarScanner Engine execution java.lang.IllegalStateException: unexpanded respons

We try to use sonar scan objective-c project code but get fails. And please help us to find out how to solve it.

sonar version: sonar-scanner-cli-6.2.1.4610-linux-x64.zip
scanner log:
sonar-scanner-log.txt (7.9 KB)
compile commands json file:
compile_commands.json (1.0 MB)

hi @jimmyk,

It seems that you have a bad or out of date compile-commands.json.

your compile_commands is referencing this file /Users/jimmyk/WorkSpace/NativeCode/gitLab/Utils/Trading/iAsia/libIAsiaConnector/StaticLibraries/CryptoppLib/build/cryptopp.build/Release-iphoneos/cryptopp.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp

The analyzer is trying to access this file and failing because it doesn’t exist.

How are you generating this compile-commands.json? If using XCode, can you try to set CLANG_USE_RESPONSE_FILE=NO?

Thanks,

I get it successful by using the command at project location folder, I wish the others get the same error can find this for reference:

xcodebuild -project {project_name}.xcodeproj \
-scheme "scheme_name" \
-destination 'generic/platform=iOS' \
-configuration Release build CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGN_ENTITLEMENTS="" \
CODE_SIGNING_ALLOWED=NO \
CLANG_USE_RESPONSE_FILE=NO \
-skipMacroValidation | xcpretty -r json-compilation-database --output compile_commands.json
1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.