Talk: LLVM

From NixOS Wiki
Revision as of 10:19, 17 May 2023 by OlivierNicole (talk | contribs) (Add alternative way to run cmake as the proposed way does not work for me)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Regarding the command to run cmake:

cmake $cmakeFlags ../llvm-project/llvm

Does not work for me (in zsh) as $cmakeFlags is parsed as a single argument. I had to do:

cmake $(echo $cmakeFlags) ../llvm-project/llvm