forked from Imagelibrary/rtems
Here is another patch to hopefully enhance rtems' configuration.
Motivation: Try to support other c-compilers besides gcc (I tried to
build rtems under Solaris using sun's WSPro c-compiler).
Here is a couple of small patches concerning the host compiler
configuration, which fix/work-around the worst problems when using sun's
WSPro c-compiler.
Changes:
* Replaced make/compilers/gcc.cfg with make/compilers/gcc.cfg.in, ie.
gcc.cfg is generated by configure now.
* Removed a line containing a hard-coded "gcc" from gcc.cfg (BUG-fix).
* Add -g to host compiler flags only if configure reported -g to work
* Add -Wall to host compiler flags only if configure reported that the
host compiler is gcc (WSPro's cc chokes on -Wall).
* Some modifications to make/Makefile.in
* Adapted make/custom/default.cfg to the new location of gcc.cfg
BTW, gcc.cfg/gcc.cfg.in seems to be full of unused code (DEBUG-VARIANTS
etc.) which deserves to be cleaned up, IMO.
IMO, a similar patch should be applied to gcc-target-default.cfg
80 lines
2.0 KiB
INI
80 lines
2.0 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)
|
|
ifndef TARGET_ARCH
|
|
TARGET_ARCH=o-$(RTEMS_BSP)
|
|
endif
|
|
|
|
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 = $(PROJECT_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 TCP/IP stack
|
|
ifeq ($(RTEMS_HAS_NETWORKING),yes)
|
|
HAS_NETWORKING=yes
|
|
else
|
|
HAS_NETWORKING=no
|
|
endif
|
|
|
|
# Define this to yes if this target wants the posix api
|
|
ifeq ($(RTEMS_HAS_POSIX_API),yes)
|
|
HAS_POSIX_API=yes
|
|
else
|
|
HAS_POSIX_API=no
|
|
endif
|
|
|
|
# Base name of start file
|
|
START_BASE=start
|
|
|