mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Makefile: no LTO and lld by default
This commit is contained in:
parent
01b99972b4
commit
eeecb54532
4 changed files with 16 additions and 3 deletions
4
Makefile
4
Makefile
|
@ -34,7 +34,7 @@ ENABLE_PYOSYS := 0
|
|||
ENABLE_GCOV := 0
|
||||
ENABLE_GPROF := 0
|
||||
ENABLE_DEBUG := 0
|
||||
ENABLE_LTO := 1
|
||||
ENABLE_LTO := 0
|
||||
ENABLE_CCACHE := 0
|
||||
# sccache is not always a drop-in replacement for ccache in practice
|
||||
ENABLE_SCCACHE := 0
|
||||
|
@ -223,7 +223,9 @@ LTOFLAGS := $(GCC_LTO)
|
|||
ifeq ($(CONFIG),clang)
|
||||
CXX = clang++
|
||||
CXXFLAGS += -std=$(CXXSTD) $(OPT_LEVEL)
|
||||
ifeq ($(ENABLE_LTO),1)
|
||||
LINKFLAGS += -fuse-ld=lld
|
||||
endif
|
||||
ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H $(ABC_ARCHFLAGS)"
|
||||
LTOFLAGS := $(CLANG_LTO)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue