1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -08:00

Mps master: xcppgc.cmk (comments only) add explanation of various

compiler flags added under job000601.

Copied from Perforce
 Change: 163287
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Kistruck 2007-09-26 15:44:42 +01:00
parent d6d6a11ef7
commit fe9b908f57

View file

@ -24,8 +24,18 @@ CC = cc -arch ppc
# .sputc: -Wno-unused is needed, because stdio.h declares __sputc as an
# inline function.
# .types: sys/types.h uses 'long long' even under -ansi.
# ( Note added 2007-09-26, RHSK:
# And fix build under Mac OS X 10.2; see job000601:
# .precomp: -no-cpp-precomp is needed, to disable Apple's custom
# preprocessor
# )
CFLAGSCOMPILER := $(subst -Wstrict-prototypes,,$(CFLAGSCOMPILER)) \
-Wno-unused -Wno-long-long -no-cpp-precomp
# ( Note added 2007-09-26, RHSK:
# Fix build under Mac OS X 10.2; see job000601:
# .ggdb: -ggdb causes failure in assembler.
# )
CFLAGSDEBUG := $(subst -g -ggdb3,-g3,$(CFLAGSDEBUG))
CFLAGSOPT := $(subst -g -ggdb3,-g3,$(CFLAGSOPT))