mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
f18a12a592
Issue #4827
69 lines
2.0 KiB
Plaintext
69 lines
2.0 KiB
Plaintext
#
|
|
# The following options let you define non-default tools to use
|
|
#
|
|
# CUSTOM_LD is only used for the progressive linking of libraries.
|
|
# It is not used for linking the final target.
|
|
#
|
|
#CUSTOM_CC = gcc
|
|
#CUSTOM_CXX = g++
|
|
#CUSTOM_AS = as
|
|
#CUSTOM_LD = ld
|
|
|
|
#
|
|
# For using a cross-compile tool chain, the names of all binutils and compilers
|
|
# are typically prefixed by the target platform. Instead of defining CUSTOM_*
|
|
# variables individually for each tool, the prefix can be defined via the
|
|
# following variable.
|
|
#
|
|
# We handle all architectures that may be specified as SPEC argument to the
|
|
# package build tool.
|
|
#
|
|
ifeq ($(filter-out $(SPECS),x86_32),)
|
|
CROSS_DEV_PREFIX ?= /usr/local/genode/tool/23.05/bin/genode-x86-
|
|
endif
|
|
ifeq ($(filter-out $(SPECS),x86_64),)
|
|
CROSS_DEV_PREFIX ?= /usr/local/genode/tool/23.05/bin/genode-x86-
|
|
endif
|
|
ifeq ($(filter-out $(SPECS),arm_64),)
|
|
CROSS_DEV_PREFIX ?= /usr/local/genode/tool/23.05/bin/genode-aarch64-
|
|
endif
|
|
ifeq ($(filter-out $(SPECS),arm),)
|
|
CROSS_DEV_PREFIX ?= /usr/local/genode/tool/23.05/bin/genode-arm-
|
|
endif
|
|
ifeq ($(filter-out $(SPECS),riscv),)
|
|
CROSS_DEV_PREFIX ?= /usr/local/genode/tool/23.05/bin/genode-riscv-
|
|
endif
|
|
|
|
#
|
|
# We use libsupc++ from g++ version 3 because
|
|
# this version does not use thread-local storage
|
|
# via the gs register. This is an interim solution.
|
|
#
|
|
#CUSTOM_CXX_LIB = g++-3.4
|
|
|
|
#
|
|
# The default optimization level used for compiling is -O2.
|
|
# By defining the variable CC_OLEVEL, you can override this
|
|
# default value, for example to optimize your binaries for size.
|
|
#
|
|
#CC_OLEVEL = -Os
|
|
|
|
#
|
|
# If CC_OPT should be extended please use concatenation syntax like:
|
|
#
|
|
#CC_OPT += -ffunction-sections -fdata-sections
|
|
|
|
#
|
|
# If CXX_LINK_OPT (linker options given to CXX) should be extended please use
|
|
# concatenation syntax like:
|
|
#
|
|
#CXX_LINK_OPT += -Wl,-gc-sections
|
|
|
|
#
|
|
# On non-GNU systems, you may direct the build system to use GNU-
|
|
# specific tools.
|
|
#
|
|
#TAC ?= /opt/gnu/bin/tac
|
|
#GNU_FIND ?= /opt/gnu/bin/find
|
|
#GNU_XARGS ?= /opt/gnu/bin/xargs
|