-
I am setting up the SDK environment on vscode on Mac (arm architecture) and clang 15.0.0 and getting the error(s);
Compile Command:
CMakeList.txt
|
Beta Was this translation helpful? Give feedback.
Answered by
jmklix
Feb 6, 2024
Replies: 2 comments 1 reply
-
Can you try turning off the warnings are errors cmake flag? You can do that by adding |
Beta Was this translation helpful? Give feedback.
0 replies
-
thank you for the suggestion, @jmklix .
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you try installing in the terminal and see if that works for you? Here Are the commands I use to build in the terminal:
cmake .. -DBUILD_ONLY="s3" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX="" -DENABLE_TESTING=OFF
cmake --build . --config=Debug
cmake --install . --config=Debug
cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_PREFIX_PATH=""
cmake --build ./ --config Debug