projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e20788
)
Added option to disable -fPIC on unsupported platforms
author
Miodrag Milanovic
<mmicko@gmail.com>
Sat, 18 Aug 2018 12:14:17 +0000
(14:14 +0200)
committer
Miodrag Milanovic
<mmicko@gmail.com>
Sat, 18 Aug 2018 12:14:17 +0000
(14:14 +0200)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index c2a3293ae7c1a382b31e862841c9ba4d5e239114..c2a076229e16a613549e4ffac2d7a563d71caa46 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-160,6
+160,9
@@
else ifeq ($(CONFIG),gcc-static)
LD = $(CXX)
LDFLAGS := $(filter-out -rdynamic,$(LDFLAGS)) -s
LDLIBS := -static $(filter-out -lrt,$(LDLIBS))
+ifeq ($(NO_FPIC),1)
+CXXFLAGS := $(filter-out -fPIC,$(CXXFLAGS))
+endif
CXXFLAGS += -std=c++11 -Os
ABCMKARGS = CC="$(CC)" CXX="$(CXX)" LD="$(LD)" LIBS="-static -lm -ldl -pthread" OPTFLAGS="-O" \
ARCHFLAGS="-DABC_USE_STDINT_H -DABC_NO_DYNAMIC_LINKING=1 -Wno-unused-but-set-variable" ABC_USE_NO_READLINE=1