source: rtems/c/src/make/compilers/gcc-target-default.cfg @ e0c6f43

4.104.114.84.95
Last change on this file since e0c6f43 was 72f9937b, checked in by Joel Sherrill <joel.sherrill@…>, on 08/23/99 at 18:48:07

Removed need for use of separate include/networking directory.

  • Property mode set to 100644
File size: 7.7 KB
Line 
1#
2#  Shared compiler for all GNU tools configurations
3#
4#  $Id$
5#
6
7##
8# CFLAGS_OPTIMIZE_V, CFLAGS_DEBUG_V, CFLAGS_PROFILE_V are the values we
9# would want the corresponding macros to be set to.
10#
11# CFLAGS_OPTIMIZE, CFLAGS_DEBUG, CFLAGS_PROFILE are set in the leaf
12# Makefiles by the 'debug:' and 'profile:' targets to their _V values.
13#
14
15# default flags
16# XCPPFLAGS, XCFLAGS, XCXXFLAGS, XASFLAGS
17# are used to add flags from the shell
18# cf. make.info ("Implicit rules/variables" for details)
19
20# NOTE: Should these go to CPPFLAGS ?
21CFLAGS_DEFAULT=-g -Wall -ansi -fasm
22
23# NOTE: CPU_CFLAGS should probably be renamed to CPU_CPPFLAGS
24# NOTE: CPU_DEFINES should probably be merged with CPU_CFLAGS
25CPPFLAGS = $(CPU_DEFINES) $(CPU_CFLAGS) $(DEFINES) $(XCPPFLAGS)
26CFLAGS   = $(CFLAGS_DEFAULT) $(XCFLAGS)
27CXXFLAGS = $(CFLAGS_DEFAULT) $(XCXXFLAGS)
28ASFLAGS  = $(CPU_ASFLAGS) $(XASFLAGS)
29
30ifeq ($(RTEMS_USE_GCC272),yes)
31ifeq ($(RTEMS_CROSS_TARGET),no)
32
33ifdef RTEMS_LIBC_DIR
34RTEMS_LIBC_INCLUDES := -I$(RTEMS_LIBC_DIR)/include
35endif
36
37# Used for posix bsps
38CPPFLAGS += \
39  -I$(PROJECT_INCLUDE) \
40  $(RTEMS_LIBC_INCLUDES)
41else
42# Used for embedded bsps
43# Ask gcc where it finds its own include files
44GCC_INCLUDE=$(shell $(CC) $(CPU_CFLAGS) -print-file-name=include $(GCCSED))
45
46CPPFLAGS += -nostdinc \
47  -I$(PROJECT_INCLUDE) \
48  -I$(GCC_INCLUDE) \
49  -I$(RTEMS_LIBC_DIR)/sys-include \
50  -I$(RTEMS_LIBC_DIR)/include
51endif
52
53# default location of Standard C Library
54ifndef LIBC_LIBC
55LIBC_LIBC=$(RTEMS_LIBC_DIR)/lib/libc.a
56endif
57
58ifndef LIBC_LIBM
59LIBC_LIBM=$(RTEMS_LIBC_DIR)/lib/libm.a
60endif
61
62else
63# NOTE: GCCSPECS probably belongs to CPPFLAGS
64# Unfortunately, many custom/*.cfg files do not pass CPPFLAGS
65# to their gcc-2.8 make-exe rules
66GCCSPECS = -B$(PROJECT_RELEASE)/lib/ -specs bsp_specs -qrtems
67 
68CC  += $(GCCSPECS)
69CXX += $(GCCSPECS)
70
71CPPFLAGS +=
72
73# default location of Standard C Library
74ifndef LIBC_LIBC
75LIBC_LIBC=$(shell $(CC) $(CPU_CFLAGS) -print-file-name=libc.a $(GCCSED))
76endif
77
78ifndef LIBC_LIBM
79LIBC_LIBM=$(shell $(CC) $(CPU_CFLAGS) -print-file-name=libm.a $(GCCSED))
80endif
81endif
82
83# Define this to yes if C++ is included in the development environment.
84# This requires that at least the GNU C++ compiler and libg++ be installed.
85ifeq ($(RTEMS_HAS_CPLUSPLUS),yes)
86CPLUS_LD_LIBS += $(PROJECT_RELEASE)/lib/librtems++$(LIBSUFFIX_VA)
87endif
88
89# debug flag;
90CFLAGS_DEBUG_V+=-Wno-unused
91
92ifeq ($(RTEMS_USE_GCC272),no)
93CFLAGS_DEBUG_V+=-qrtems_debug
94endif
95
96# when debugging, optimize flag: typically empty
97# some compilers do allow optimization with their "-g"
98CFLAGS_DEBUG_OPTIMIZE_V=-g
99
100# profile flag; use gprof(1)
101CFLAGS_PROFILE_V=-pg
102
103# default is to optimize
104CFLAGS_OPTIMIZE=$(CFLAGS_OPTIMIZE_V)
105
106# dynamic libraries
107#CFLAGS_DYNAMIC_V=-fpic
108#ASFLAGS_DYNAMIC_V=
109
110CFLAGS += $(CFLAGS_OPTIMIZE) $(CFLAGS_DEBUG) $(CFLAGS_PROFILE)
111
112# List of library paths without -L
113LD_PATHS= $(PROJECT_RELEASE)/lib
114
115# libraries you want EVERYONE to link with
116#LD_LIBS=
117
118# ld flag to ensure pure-text
119#LDFLAGS_MUST_BE_PURE_V =
120
121# ld flag for [un]shared objects
122#LDFLAGS_STATIC_LIBRARIES_V =
123#LDFLAGS_SHARED_LIBRARIES_V =
124
125# ld flag for incomplete link
126LDFLAGS_INCOMPLETE = -r
127
128# Special linker options when building lib.so
129LDFLAGS_DYNAMIC_V = ??
130
131# Some dynamic linking systems want the preferred name recorded in the binary
132# ref: src/libxil/Makefile
133LDFLAGS_DYNAMIC_LIBNAME_V = -h $(DYNAMIC_VERSION_LIBNAME)
134
135# ld flags for profiling, debugging
136LDFLAGS_PROFILE_V =
137LDFLAGS_DEBUG_V =
138
139LDFLAGS=$(LDFLAGS_PROFILE) $(LDFLAGS_DEBUG) $(LD_PATHS:%=-L %)
140
141#
142# Stuff to clean and clobber for the compiler and its tools
143#
144
145CLEAN_CC = a.out *.o *.BAK
146CLOBBER_CC =
147
148#
149# Client compiler and support tools
150#
151
152# CPP command to write file to standard output
153CPP=$(CC) -E -ansi -w -Wp,-$$
154
155# flags set by cc when running cpp
156# NOTE: CPP_CC_FLAGS does not seem to be used anywhere
157# CPP_CC_FLAGS=-D__STDC__
158
159# egrep regexp to ignore symbol table entries in ar archives.
160# Only used to make sure we skip them when coalescing libraries.
161# skip __.SYMDEF and empty names (maybe bug in ranlib??).
162AR_SYMBOL_TABLE="HIGHLY-UNLIKELY-TO-CONFLICT"
163ARFLAGS=ruv
164
165#
166# Command to convert a normal archive to one searchable by $(LD)
167#
168# NOTE: Obsolete, use $(RANLIB) instead, MKLIB may disappear soon
169MKLIB=$(RANLIB)
170
171
172#
173# How to compile stuff into ${ARCH} subdirectory
174#
175# NOTE: we override COMPILE.[c|cc|S]
176# because gmake default rules use TARGET_ARCH for different purposes
177#
178
179COMPILE.c=$(CC) $(CPPFLAGS) $(CFLAGS) -c
180COMPILE.cc=$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c
181COMPILE.S=$(CC) $(ASFLAGS) $(CPPFLAGS) -c
182
183${ARCH}/%.o: %.c
184        ${COMPILE.c} -o $@ $<
185
186${ARCH}/%.o: %.cc
187        ${COMPILE.cc} -o $@ $<
188
189${ARCH}/%.o: %.cpp
190        ${COMPILE.cc} -o $@ $<
191
192${ARCH}/%.o: %.cxx
193        ${COMPILE.cc} -o $@ $<
194
195${ARCH}/%.o: %.C
196        ${COMPILE.cc} -o $@ $<
197
198${ARCH}/%.o: %.S
199        ${COMPILE.S} -DASM -o $@ $<
200
201# OBSOLETE: the rule above should be equivalent.
202# strip out C++ style comments.
203# ${ARCH}/%.o: %.S
204#       sed -e 's/\/\/.*$$//' < $< | \
205#           $(CPP) $(CPPFLAGS) -I. -I$(srcdir) -DASM - >$(ARCH)/$*.i
206#       $(AS) $(ASFLAGS) -o $@ $(ARCH)/$*.i
207
208# Make foo.rel from foo.o
209${ARCH}/%.rel: ${ARCH}/%.o
210        ${LD} $(LDFLAGS_INCOMPLETE) -o $@ $^
211
212# create $(ARCH)/pgm from pgm.sh
213${ARCH}/%: %.sh
214        $(RM) $@
215        $(CP) $< $@
216        $(CHMOD) +x $@
217
218# Dependency files for use by gmake
219# NOTE: we don't put in $(TARGET_ARCH)
220#       so that 'make clean' doesn't blow it away
221
222DEPEND=Depends-$(TARGET_ARCH:o-%=%)
223
224CLEAN_DEPEND=$(DEPEND).tmp
225CLOBBER_DEPEND=$(DEPEND)
226
227# We deliberately don't have anything depend on the
228# $(DEPEND) file; otherwise it will get rebuilt even
229# on 'make clean'
230#
231
232depend: $(C_FILES) $(CC_FILES) $(S_FILES)
233ifneq ($(words $(C_FILES) $(CC_FILES) $(S_FILES)), 0)
234#       Use gcc -M to generate dependencies
235#       Replace foo.o with $(ARCH)/foo.o
236#       Replace $(ARCH) value with string $(ARCH)
237#           so that it will for debug and profile cases
238        $(COMPILE.c) -M   $^    |  \
239        $(SED) -e 's?^\(.*\)\.o[ ]*:?$$(ARCH)/\1.o:?' \
240            -e 's?$(ARCH)/?$$(ARCH)/?'   >$(DEPEND).tmp
241        $(MV) $(DEPEND).tmp $(DEPEND)
242endif
243
244# spell out all the LINK_FILE's, rather than using -lbsp, so
245#  that $(LINK_FILES) can be a dependency
246
247# Start file must be one of
248#    $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o
249#    $(PROJECT_RELEASE)/lib/asmiface$(LIB_VARIANT).o
250# It defaults to start.o, but an app can override it.
251
252ifeq ($(START_BASE),)
253  START_FILE=
254else
255  START_FILE=$(PROJECT_RELEASE)/lib/$(START_BASE)$(LIB_VARIANT).o
256endif
257
258CONSTRUCTOR=
259
260LIBC_LOW=
261
262ifndef LIBGCC
263LIBGCC = $(shell $(CC) $(CFLAGS) -print-libgcc-file-name $(GCCSED))
264endif
265
266#
267# NOTE: a rule to link an rtems' application should look similar to this
268#       (cf. "make-exe" in make/custom/*.cfg):
269#
270# gcc27:
271# $(PGM): $(LINK_FILES)
272#       $(LD) $(LDFLAGS) -o $@ $(LINK_OBJS) \
273#       --start-group $(LINK_LIBS) --end-group
274#
275# gcc28:
276# $(PGM): $(LINK_FILES)
277#       $(CC) $(CFLAGS) -o $@ $(LINK_OBJS) $(LINK_LIBS)
278#
279
280LINK_OBJS =\
281    $(CONSTRUCTOR) \
282    $(OBJS) \
283    $(MANAGERS_NOT_WANTED:%=$(PROJECT_RELEASE)/lib/no-%$(LIB_VARIANT).rel)
284
285LINK_FILES =\
286    $(START_FILE) \
287    $(CONSTRUCTOR) \
288    $(OBJS) \
289    $(MANAGERS_NOT_WANTED:%=$(PROJECT_RELEASE)/lib/no-%$(LIB_VARIANT).rel) \
290    $(PROJECT_RELEASE)/lib/librtemsall$(LIBSUFFIX_VA)
291
292ifeq ($(RTEMS_USE_GCC272),yes)
293LINK_LIBS = $(PROJECT_RELEASE)/lib/librtemsall$(LIBSUFFIX_VA)
294ifeq ($(RTEMS_CROSS_TARGET),yes)
295# NOTE: add libc and libgcc only for embedded targets
296#       LIBC_LIBM should not be needed by rtems itself.
297# FIXME: If a BSP requires libm, its make/custom/*.cfg file should add
298#        LIBC_LIBM to LINK_LIBS (untested)
299LINK_LIBS += $(LIBC_LIBC) $(LIBGCC)
300endif
301endif
302
303LINK_LIBS += $(LD_LIBS)   
304
305#
306# Allow user to override link commands (to build a prom image, perhaps)
307#
308ifndef LINKCMDS
309LINKCMDS=$(PROJECT_RELEASE)/lib/linkcmds
310endif
311
312
313define make-rel
314        $(LD) $(LDFLAGS_INCOMPLETE) $(XLDFLAGS) -o $@ $(OBJS)
315endef
Note: See TracBrowser for help on using the repository browser.