source: rtems/make/custom/posix.cfg @ 98c73895

4.104.114.84.95
Last change on this file since 98c73895 was ca0bafa7, checked in by Joel Sherrill <joel.sherrill@…>, on 05/18/98 at 16:40:13

Added much stuff formerly in multiple compiler files.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1#
2#  Config file for the posix based RTEMS
3#
4#  $Id$
5#
6
7include $(PROJECT_ROOT)/make/target.cfg
8include $(PROJECT_ROOT)/make/host.cfg
9
10# Set them here, otherwise gcc-target-default.cfg will set them to values
11# not working on some os variants (linux-RH5.0, glibc versions 2.0.0 - 2.0.7)
12# These should be available on all unices
13LIBC_LIBC=-lc
14LIBC_LIBM=-lm
15
16include $(RTEMS_ROOT)/make/custom/$(RTEMS_HOST)-posix.cfg
17
18# Setting formerly contained in gcc-<TARGET_ARCH>.cfg
19
20# Not applicable - let's override 'em
21LINKCMDS=
22START_FILE=
23START_BASE=
24
25# Here is the rule to actually build a $(ARCH)/foo.exe
26# It also builds $(ARCH)/foo.sr and $(ARCH)/foo.nm
27# Usage ref: src/tests/sptest/sp1/Makefile
28#
29# 'NODE' is set to 1 or 2 for multi cpu tests (ref: mptests/mp01/node1/Makefile)
30# If NODE is set as an environment variable, don't trust it, zero it out.
31# (NODE turns out to be a very common environment variable)
32ifeq (,$(NODE))
33NODE=0
34else
35ifeq "$(origin NODE)" "environment"
36NODE=0
37endif
38endif
39# Setting formerly contained in gcc-<TARGET_ARCH>.cfg
40
41# Not applicable - let's override 'em
42LINKCMDS=
43START_FILE=
44START_BASE=
45
46# Here is the rule to actually build a $(ARCH)/foo.exe
47# It also builds $(ARCH)/foo.sr and $(ARCH)/foo.nm
48# Usage ref: src/tests/sptest/sp1/Makefile
49#
50# 'NODE' is set to 1 or 2 for multi cpu tests (ref: mptests/mp01/node1/Makefile)
51# If NODE is set as an environment variable, don't trust it, zero it out.
52# (NODE turns out to be a very common environment variable)
53ifeq (,$(NODE))
54NODE=0
55else
56ifeq "$(origin NODE)" "environment"
57NODE=0
58endif
59endif
60
Note: See TracBrowser for help on using the repository browser.