source: rtems/make/custom/portsw.cfg @ 123d4b7d

4.104.114.84.95
Last change on this file since 123d4b7d was 28e7d7fa, checked in by Joel Sherrill <joel.sherrill@…>, on 08/20/98 at 22:04:22

Patches from Eric Norum

  • Property mode set to 100644
File size: 1.8 KB
Line 
1#
2#  Custom file for "portsw" -- AMD 29205 based board
3#
4#  $Id$
5#
6
7# Specify here the host and target "architectures"
8HOST_ARCH=o-$(RTEMS_HOST)
9TARGET_ARCH=o-$(RTEMS_BSP)
10
11RTEMS_CPU=a29k
12RTEMS_CPU_MODEL=a29205
13
14# This is the actual bsp directory used during the build process.
15RTEMS_BSP_FAMILY=portsw
16
17# use the inline functions instead of the macros
18# ref: src/exec/generic/Makefile
19# Need INLINE_UPCASE set to uppercase value of INLINE variable
20#   ref: make/compilers/gcc-force386.cfg
21INLINE=macros
22INLINE_UPCASE=
23
24# The makefiles all use PROJECT_xxx for variables.
25# Ie: $(PROJECT_RELEASE) is the install point.
26# Externally, we think of these as "RTEMS" variables.
27# Here is where we convert from RTEMS forms to PROJECT forms
28# See also make/main.cfg, which derives some more.
29PROJECT_ROOT=$(RTEMS_ROOT)/c
30
31# HOST Compiler config file
32# You may also want to specify where the compiler resides here.
33CC_$(HOST_ARCH)_DIR=$(RTEMS_GNUTOOLS_HOST)
34CONFIG.$(HOST_ARCH).CC   = $(RTEMS_ROOT)/make/compilers/gcc.cfg
35
36## Target compiler config file, if any
37CC_$(TARGET_ARCH)_DIR=$(RTEMS_GNUTOOLS)
38CONFIG.$(TARGET_ARCH).CC         = $(RTEMS_ROOT)/make/compilers/gcc-$(RTEMS_BSP).cfg
39
40# Use the LIBC support for CYGNUS newlib
41# RTEMS_LIBC_DIR must already be set (by module file)
42RTEMS_USE_NEWLIB=yes
43
44# Define this to yes if C++ is included in the development environment.
45# This requires that at least the GNU C++ compiler and libg++ be installed.
46#
47#  Need "main" in BSP so can't link C++ sample test or you will get
48#     duplicate symbol errors for main
49#
50HAS_CPLUSPLUS=no
51
52# Define this to yes if this target supports multiprocessor environments.
53HAS_MP=no
54
55# This target does NOT support the TCP/IP stack so ignore requests
56# to enable it.
57HAS_NETWORKING=no
58
59# Define this to yes if this target wants the posix api
60HAS_POSIX_API=no
61
62# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.