source: rtems/make/custom/posix.cfg @ 341c6faa

4.104.115
Last change on this file since 341c6faa was b1a66fea, checked in by Joel Sherrill <joel.sherrill@…>, on 03/11/08 at 20:50:58

2008-03-11 Joel Sherrill <joel.sherrill@…>

  • custom/av5282.cfg, custom/bare.cfg, custom/default.cfg, custom/gba.cfg, custom/gp32.cfg, custom/i386ex.cfg, custom/idp.cfg, custom/mbx8xx.cfg, custom/mcf5235.cfg, custom/mcp750.cfg, custom/mrm332.cfg, custom/mtx603e.cfg, custom/mvme136.cfg, custom/mvme147.cfg, custom/mvme162.cfg, custom/mvme162lx.cfg, custom/mvme167.cfg, custom/mvme2100.cfg, custom/mvme2307.cfg, custom/mvme3100.cfg, custom/mvme5500.cfg, custom/nios2_iss.cfg, custom/pc386.cfg, custom/posix.cfg, custom/score603e.cfg, custom/sim68000.cfg, custom/simcpu32.cfg, custom/ss555.cfg, custom/ts_386ex.cfg, custom/uC5282.cfg, custom/virtex.cfg: Switch to explicit .exe instead of EXEEXT to get it to work.
  • Property mode set to 100644
File size: 861 bytes
Line 
1#
2#  Config file for the posix based RTEMS
3#
4#  $Id$
5#
6
7# Set them here, otherwise gcc-target-default.cfg will set them to values
8# not working on some os variants (linux-RH5.0, glibc versions 2.0.0 - 2.0.7)
9# These should be available on all unices
10LIBC_LIBC=-lc
11LIBC_LIBM=-lm
12
13include $(RTEMS_ROOT)/make/custom/$(RTEMS_HOST)-posix.cfg
14
15# Not applicable - let's override 'em
16LINKCMDS=
17START_FILE=
18START_BASE=
19
20# Here is the rule to actually build a $(ARCH)/foo.exe
21# It also builds $(ARCH)/foo.sr and $(ARCH)/foo.nm
22# Usage ref: src/tests/sptest/sp1/Makefile
23#
24# 'NODE' is set to 1 or 2 for multi cpu tests (ref: mptests/mp01/node1/Makefile)
25# If NODE is set as an environment variable, don't trust it, zero it out.
26# (NODE turns out to be a very common environment variable)
27ifeq (,$(NODE))
28NODE=0
29else
30ifeq "$(origin NODE)" "environment"
31NODE=0
32endif
33endif
Note: See TracBrowser for help on using the repository browser.