summaryrefslogtreecommitdiffstats
path: root/make/custom/posix.cfg
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-14 12:09:10 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-14 12:09:10 +0000
commitde885fe831936d27af9f342bb9a558554a5475d9 (patch)
tree39e96b49dcb7787fc07cd5bc19b4b05b0d81f7cc /make/custom/posix.cfg
parent2009-10-14 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-de885fe831936d27af9f342bb9a558554a5475d9.tar.bz2
Remove.
Diffstat (limited to '')
-rw-r--r--make/custom/posix.cfg31
1 files changed, 0 insertions, 31 deletions
diff --git a/make/custom/posix.cfg b/make/custom/posix.cfg
deleted file mode 100644
index 805427f8ed..0000000000
--- a/make/custom/posix.cfg
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# Config file for the posix based RTEMS
-#
-# $Id$
-#
-
-# Set them here, otherwise gcc-target-default.cfg will set them to values
-# not working on some os variants (linux-RH5.0, glibc versions 2.0.0 - 2.0.7)
-# These should be available on all unices
-LIBC_LIBC=-lc
-LIBC_LIBM=-lm
-
-include $(RTEMS_ROOT)/make/custom/$(RTEMS_HOST)-posix.cfg
-
-# Not applicable - let's override 'em
-LINKCMDS=
-
-# Here is the rule to actually build a $(ARCH)/foo.exe
-# It also builds $(ARCH)/foo.sr and $(ARCH)/foo.nm
-# Usage ref: src/tests/sptest/sp1/Makefile
-#
-# 'NODE' is set to 1 or 2 for multi cpu tests (ref: mptests/mp01/node1/Makefile)
-# If NODE is set as an environment variable, don't trust it, zero it out.
-# (NODE turns out to be a very common environment variable)
-ifeq (,$(NODE))
-NODE=0
-else
-ifeq "$(origin NODE)" "environment"
-NODE=0
-endif
-endif