forked from Imagelibrary/rtems
74 lines
1.9 KiB
INI
74 lines
1.9 KiB
INI
# Default target settings
|
|
#
|
|
# Some of these values are redefined in the target specific .cfg files.
|
|
#
|
|
# Created by Jiri Gaisler, 16-03-97 (who is owed a debt of gratitude
|
|
# for converting RTEMS to autoconf. Thanks. --joel)
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
include $(PROJECT_ROOT)/make/target.cfg
|
|
include $(PROJECT_ROOT)/make/host.cfg
|
|
|
|
# Specify here the host and target "architectures"
|
|
HOST_ARCH=o-$(RTEMS_HOST)
|
|
TARGET_ARCH=o-$(RTEMS_BSP)
|
|
|
|
include $(RTEMS_ROOT)/make/main.cfg
|
|
|
|
# use the inline functions instead of the macros
|
|
# ref: src/exec/generic/Makefile
|
|
ifeq ($(RTEMS_USE_MACROS),yes)
|
|
INLINE=macros
|
|
INLINE_UPCASE=
|
|
else
|
|
INLINE=inline
|
|
INLINE_UPCASE=INLINE
|
|
endif
|
|
|
|
# HOST Compiler config file
|
|
# You may also want to specify where the compiler resides here.
|
|
CONFIG.$(HOST_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc.cfg
|
|
|
|
## Target compiler config file, if any
|
|
CONFIG.$(TARGET_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc-target-default.cfg
|
|
|
|
## GCC specs extension file location
|
|
RTEMS_BSP_SPECS = $(PROJECT_ROOT)/$(RTEMS_BSP)/lib/bsp_specs
|
|
|
|
## LIBC support
|
|
## Specify the one you want here and fill in the blanks.
|
|
## Currently CYGNUS newlib is supported.
|
|
## NOTE: RTEMS libcsupport.a includes RTEMS versions of stuff like
|
|
## malloc, gettimeofday, etc.
|
|
|
|
# Use the LIBC support for CYGNUS newlib
|
|
# RTEMS_LIBC_DIR must already be set (by module file)
|
|
RTEMS_USE_NEWLIB=yes
|
|
|
|
# Define this to yes if C++ is included in the development environment.
|
|
# This requires that at least the GNU C++ compiler and libg++ be installed.
|
|
ifeq ($(RTEMS_HAS_CPLUSPLUS),yes)
|
|
HAS_CPLUSPLUS=yes
|
|
else
|
|
HAS_CPLUSPLUS=no
|
|
endif
|
|
|
|
# Define this to yes if this target supports multiprocessor environments.
|
|
HAS_MP=no
|
|
|
|
# Define this to yes if this target wants the KA9Q TCP/IP stack
|
|
ifeq ($(RTEMS_HAS_KA9Q),yes)
|
|
HAS_KA9Q=yes
|
|
endif
|
|
|
|
# Define this to yes if this target wants the posix api
|
|
ifeq ($(RTEMS_HAS_POSIX_API),yes)
|
|
HAS_POSIX_API=yes
|
|
endif
|
|
|
|
# Base name of start file
|
|
START_BASE=start
|
|
|