[all-commits] [llvm/llvm-project] 008acf: [libc] Fix quotation marks in overlay mode instruc...
David Spickett via All-commits
all-commits at lists.llvm.org
Fri Feb 3 06:44:53 PST 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 008acfb519510abe37468bd26f635c8d817b6067
https://github.com/llvm/llvm-project/commit/008acfb519510abe37468bd26f635c8d817b6067
Author: David Spickett <david.spickett at linaro.org>
Date: 2023-02-03 (Fri, 03 Feb 2023)
Changed paths:
M libc/docs/overlay_mode.rst
Log Message:
-----------
[libc] Fix quotation marks in overlay mode instructions
These were using ” ("right double quotation mark") instead of
the usual ". This means CMake took the value literally and you
got:
```
CMake Error at CMakeLists.txt:139 (MESSAGE):
”libc” isn't a known project:
bolt;clang;clang-tools-extra;compiler-rt;cross-project-tests;libc;libclc;lld;lldb;mlir;openmp;polly;pstl;flang.
Did you mean to enable it as a runtime in LLVM_ENABLE_RUNTIMES?
```
`="libc"` works fine.
Reviewed By: lntue
Differential Revision: https://reviews.llvm.org/D143254
More information about the All-commits
mailing list