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
When running ./020_build_vc4c.sh on Raspberry Pi 3B+ running Debian Buster the following error occurs:
./020_build_vc4c.sh
CMake Error at cmake/clang.cmake:23 (string): string sub-command REGEX, mode REPLACE needs at least 6 arguments total to command. Call Stack (most recent call first): CMakeLists.txt:121 (include)
Solution is to inclose the last parameter of REGEX in cmake/clang.cmake:23 in quotes:
cmake/clang.cmake:23
string (REGEX REPLACE ".*clang version ([0-9]+\\.[0-9]+).*" "\\1" CLANG_VERSION_STRING "${clang_full_version_string}")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running
./020_build_vc4c.sh
on Raspberry Pi 3B+ running Debian Buster the following error occurs:Solution is to inclose the last parameter of REGEX in
cmake/clang.cmake:23
in quotes:string (REGEX REPLACE ".*clang version ([0-9]+\\.[0-9]+).*" "\\1" CLANG_VERSION_STRING "${clang_full_version_string}")
The text was updated successfully, but these errors were encountered: