3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 09:34:09 +00:00

README: tell macOS users to use brew clang with LTO

This commit is contained in:
Emil J 2024-10-22 12:45:06 +02:00
parent 7db4c65970
commit f3213d5057

View file

@ -130,9 +130,15 @@ lld by enabling LTO:
$ make ENABLE_LTO=1
On macOS, LTO requires using clang from homebrew which isn't in PATH
rather than xcode clang.
$ make ENABLE_LTO=1 CXX=$(brew --prefix)/opt/llvm/bin/clang++
For other compilers and build configurations it might be
necessary to make some changes to the config section of the
Makefile.
Makefile. It's also an alternative way to set the make variables
mentioned above.
$ vi Makefile # ..or..
$ vi Makefile.conf