source: rtems/make/custom/posix.cfg @ 0e70f605

4.104.114.84.95
Last change on this file since 0e70f605 was 0e70f605, checked in by Joel Sherrill <joel.sherrill@…>, on 04/27/98 at 14:21:55

Fixes from Ralf Corsepius:

  • Posix BSP configuration: Moved some rules from make/custom/*-posix.cfg files to make/custom/posix.cfg, Removed references to stdc++ from *posix.cfg files (rtems doesn't use/need libstdc++)

NOTE: Building Posix-BSPs should now work again for native compilation with
gcc, i..e. linux using primary compiler and primary libc.
All Posix-BSP configurations that don't use gcc as primary compiler or
don't use the primary libc don't work, e.g. solaris, linux w/ egcs as
secondary compiler won't be built correctly.

  • Property mode set to 100644
File size: 773 bytes
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
10include $(RTEMS_ROOT)/make/custom/$(RTEMS_HOST)-posix.cfg
11
12# Setting formerly contained in gcc-<TARGET_ARCH>.cfg
13
14# Not applicable - let's override 'em
15LINKCMDS=
16START_FILE=
17START_BASE=
18
19# Here is the rule to actually build a $(ARCH)/foo.exe
20# It also builds $(ARCH)/foo.sr and $(ARCH)/foo.nm
21# Usage ref: src/tests/sptest/sp1/Makefile
22#
23# 'NODE' is set to 1 or 2 for multi cpu tests (ref: mptests/mp01/node1/Makefile)
24# If NODE is set as an environment variable, don't trust it, zero it out.
25# (NODE turns out to be a very common environment variable)
26ifeq (,$(NODE))
27NODE=0
28else
29ifeq "$(origin NODE)" "environment"
30NODE=0
31endif
32endif
33
Note: See TracBrowser for help on using the repository browser.