source: rtems/make/custom/Solaris-posix.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#  Config file for the Solaris based RTEMS UNIX
3#
4#  $Id$
5#
6
7# Specify here the host and target "architectures"
8HOST_ARCH=o-$(RTEMS_HOST)
9TARGET_ARCH=o-$(RTEMS_BSP)
10
11include $(RTEMS_ROOT)/make/main.cfg
12
13RTEMS_CPU=unix
14RTEMS_CPU_FAMILY=sparc
15RTEMS_CPU_MODEL=sparc_v8
16RTEMS_UNIX_FLAVOR=solaris
17
18# This is the actual bsp directory used during the build process.
19RTEMS_BSP_FAMILY=posix
20
21# use the inline functions instead of the macros
22# ref: src/exec/generic/Makefile
23# Need INLINE_UPCASE set to uppercase value of INLINE variable
24#   ref: make/compilers/gcc-force386.cfg
25ifeq (${RTEMS_USE_MACROS},yes)
26INLINE=macros
27INLINE_UPCASE=
28else
29INLINE=inline
30INLINE_UPCASE=INLINE
31endif
32
33# HOST Compiler config file
34# You may also want to specify where the compiler resides here.
35CC_$(HOST_ARCH)_DIR=$(RTEMS_GNUTOOLS_HOST)
36CONFIG.$(HOST_ARCH).CC   = $(RTEMS_ROOT)/make/compilers/gcc.cfg
37
38## Target compiler config file, if any
39CC_$(TARGET_ARCH)_DIR=$(CC_$(HOST_ARCH)_DIR)
40CONFIG.$(TARGET_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc-solaris2.cfg
41
42# Use the LIBC support for CYGNUS newlib
43# RTEMS_LIBC_DIR must already be set (by module file)
44RTEMS_USE_NEWLIB=yes
45
46# Define this to yes if C++ is included in the development environment
47# This requires that at least the GNU C++ compiler and libg++ be installed.
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# This target does NOT support the POSIX API.
58HAS_POSIX_API=no
59
60# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.