source: rtems/make/custom/posix.cfg @ 65a41d61

4.104.114.84.95
Last change on this file since 65a41d61 was 65e6b542, checked in by Joel Sherrill <joel.sherrill@…>, on 04/26/01 at 16:41:44

2001-04-26 Ralf Corsepius <corsepiu@…>

  • compilers/gcc-no_bsp.cfg: Remove -ansi -fasm.
  • compilers/gcc-default.cfg: Dito.
  • compilers/gcc-portsw.cfg: Remove -Hansi.
  • custom/posix.cfg: Remove inclusion of target.cfg.
  • custom/simhppa.cfg: Remove -ansi -fasm.
  • Property mode set to 100644
File size: 898 bytes
Line 
1#
2#  Config file for the posix based RTEMS
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/host.cfg
8
9# Set them here, otherwise gcc-target-default.cfg will set them to values
10# not working on some os variants (linux-RH5.0, glibc versions 2.0.0 - 2.0.7)
11# These should be available on all unices
12LIBC_LIBC=-lc
13LIBC_LIBM=-lm
14
15include $(RTEMS_ROOT)/make/custom/$(RTEMS_HOST)-posix.cfg
16
17# Not applicable - let's override 'em
18LINKCMDS=
19START_FILE=
20START_BASE=
21
22# Here is the rule to actually build a $(ARCH)/foo.exe
23# It also builds $(ARCH)/foo.sr and $(ARCH)/foo.nm
24# Usage ref: src/tests/sptest/sp1/Makefile
25#
26# 'NODE' is set to 1 or 2 for multi cpu tests (ref: mptests/mp01/node1/Makefile)
27# If NODE is set as an environment variable, don't trust it, zero it out.
28# (NODE turns out to be a very common environment variable)
29ifeq (,$(NODE))
30NODE=0
31else
32ifeq "$(origin NODE)" "environment"
33NODE=0
34endif
35endif
Note: See TracBrowser for help on using the repository browser.