mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-25 06:50:46 -08:00
This change will be integrated but ignored (-ay) to the gg-epcore/union sources, so that they retain HopeNames. Copied from Perforce Change: 24911 ServerID: perforce.ravenbrook.com
31 lines
1 KiB
Text
31 lines
1 KiB
Text
# impl.gmk.ic: GNUMAKEFILE FRAGMENT FOR IRIX 6 CC (N32 or N64 ABI)
|
|
#
|
|
# $Id$
|
|
# Copyright (c) 2001 Ravenbrook Limited.
|
|
#
|
|
# This file is included by platform makefiles that use the IRIX 6 CC
|
|
# compiler. It defines the compiler specific variables that the
|
|
# common makefile fragment (impl.gmk.comm) requires.
|
|
|
|
|
|
CC = cc
|
|
|
|
|
|
# suppress error(1174): function "foo" was declared but never referenced
|
|
# because it happens with vfork in <unistd.h> included from vmi5.c
|
|
# suppress error(1196): function declared implicitly
|
|
# because it happens with __vfork in <unistd.h> included from vmi5.c
|
|
# suppress remark(1209): 'controlling expression is constant'
|
|
# because it occurs in 'while(0)' and statically determined checks
|
|
# suppress remark(1552): 'variable "foo" was set but never used'
|
|
# (e.g. variables only used in asserts)
|
|
# can't use -pedantic because Irix header files have #ident
|
|
|
|
CFLAGSCOMPILER = -ansi -fullwarn -w2 -diag_error 1000-9999 \
|
|
-diag_suppress 1174,1196,1209,1552
|
|
CFLAGSDEBUG = -g
|
|
CFLAGSOPT = -O -g3
|
|
CFLAGSOPTNODEBUG = -O
|
|
|
|
|
|
include comm.gmk
|