source: rtems/make/custom/no_bsp.cfg @ bffb938

4.104.114.84.95
Last change on this file since bffb938 was bffb938, checked in by Joel Sherrill <joel.sherrill@…>, on 01/20/98 at 19:30:30

Removed PROJECT_HOME and CONFIG_DIR variables.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1#
2#  Configuration file for the "no_bsp" 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=no_cpu
12RTEMS_CPU_MODEL=no_cpu_model
13
14# This is the actual bsp directory used during the build process.
15RTEMS_BSP_FAMILY=no_bsp
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
21ifeq ($(RTEMS_USE_MACROS),yes)
22INLINE=macros
23INLINE_UPCASE=
24else
25INLINE=inline
26INLINE_UPCASE=INLINE
27endif
28
29# HOST Compiler config file
30# You may also want to specify where the compiler resides here.
31CC_$(HOST_ARCH)_DIR=$(RTEMS_GNUTOOLS_HOST)
32CONFIG.$(HOST_ARCH).CC   = $(RTEMS_ROOT)/make/compilers/gcc.cfg
33
34## Target compiler config file, if any
35CC_$(TARGET_ARCH)_DIR=$(RTEMS_GNUTOOLS)
36CONFIG.$(TARGET_ARCH).CC         = $(RTEMS_ROOT)/make/compilers/gcc-$(RTEMS_BSP).cfg
37
38# Use the LIBC support for CYGNUS newlib
39# RTEMS_LIBC_DIR must already be set (by module file)
40RTEMS_USE_NEWLIB=no
41
42# Define this to yes if C++ is included in the development environment.
43# This requires that at least the GNU C++ compiler and libg++ be installed.
44#
45#  Need "main" in BSP so can't link C++ sample test or you will get
46#     duplicate symbol errors for main
47#
48HAS_CPLUSPLUS=no
49
50# Define this to yes if this target supports multiprocessor environments.
51HAS_MP=yes
52
53# This target does NOT support the KA9Q TCP/IP stack so ignore requests
54# to enable it.
55HAS_KA9Q=no
56
57# Define this to yes if this target wants the posix api
58ifeq ($(RTEMS_HAS_POSIX_API),yes)
59HAS_POSIX_API=yes
60endif
61
62# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.