• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

firtst release


Commit MetaInfo

Revision99aece79ce2ce0b23f6d7390825025418c4f3dd9 (tree)
Time2020-02-13 20:01:47
AuthorLittleWuCoding <31984989+LittleWuCoding@user...>
CommiterKyotaro Horiguchi

Log Message

Fix compiling error on Solaris

The 'LDFLAGS+=-Wl,--build-id' option is for rpm building in Linux like
OS. The SunOS is not native support the option
'LDFLAGS+=-Wl,--build-id' . So, we disable this option in SunOS while
compiling.

Committed a bit tweaked version from the orignal.

Change Summary

Incremental Difference

--- a/Makefile
+++ b/Makefile
@@ -32,7 +32,9 @@ TARSOURCES = Makefile *.c *.h COPYRIGHT* \
3232 doc/* expected/*.out sql/*.sql sql/maskout.sh \
3333 data/data.csv input/*.source output/*.source SPECS/*.spec
3434
35+ifneq ($(shell uname), SunOS)
3536 LDFLAGS+=-Wl,--build-id
37+endif
3638
3739 installcheck: $(REGRESSION_EXPECTED)
3840