We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release+Asserts
This logic may choose an incorrect clang directory if gclient sync fails to remove an old directory:
gclient sync
reclient-configs/configure_reclient.py
Lines 171 to 188 in 7851c93
This leads to clang_remote_wrapper trying to run a compiler with a symlink pointing nowhere, i.e. instead of:
clang_remote_wrapper
clang_include_dir="../../third_party/llvm-build/Release+Asserts/lib/clang/20/include" linux_clang_include_dir="../../third_party/llvm-build/Release+Asserts_linux/lib/clang/20/include"
we get:
clang_include_dir="../../third_party/llvm-build/Release+Asserts/lib/clang/19/include" linux_clang_include_dir="../../third_party/llvm-build/Release+Asserts_linux/lib/clang/19/include"
A more robust approach is to search for the lib/**/include directory remotely and symlink it right in the clang_remote_wrapper script.
lib/**/include
Another approach is to sort found directories and choose the last one instead of the first one.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This logic may choose an incorrect clang directory if
gclient sync
fails to remove an old directory:reclient-configs/configure_reclient.py
Lines 171 to 188 in 7851c93
This leads to
clang_remote_wrapper
trying to run a compiler with a symlink pointing nowhere, i.e. instead of:we get:
A more robust approach is to search for the
lib/**/include
directory remotely and symlink it right in theclang_remote_wrapper
script.Another approach is to sort found directories and choose the last one instead of the first one.
The text was updated successfully, but these errors were encountered: