projects
/
stockfish.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
81d42b4
)
Don't add -m32/-m64 to CXXFLAGS
author
Sven Joachim
<svenjoac@gmx.de>
Mon, 27 Jan 2020 20:56:03 +0000
(20:56 +0000)
committer
Milan Zamazal
<pdm@debian.org>
Mon, 27 Jan 2020 20:56:03 +0000
(20:56 +0000)
Bug-Debian: https://bugs.debian.org/843922
Last-Update: 2016-11-11
Adding those is not only unnecessary, but actually breaks the build on
many architectures, since g++ does not recognize them when built without
multilib support.
Gbp-Pq: Name cxxflags.patch
src/Makefile
patch
|
blob
|
history
diff --git
a/src/Makefile
b/src/Makefile
index 679eb8d90fcb740c183660ed9eae3682e9a2c6f7..85c797dcfe394dd33ad85317886899fc782240ee 100644
(file)
--- a/
src/Makefile
+++ b/
src/Makefile
@@
-165,9
+165,6
@@
ifeq ($(COMP),gcc)
CXXFLAGS += -m$(bits)
LDFLAGS += -m$(bits)
endif
- else
- CXXFLAGS += -m$(bits)
- LDFLAGS += -m$(bits)
endif
ifneq ($(KERNEL),Darwin)