mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-28 07:04:14 +00:00
5ccae43552
The minimal-footprint Ada runtime for implementing library-like functionality in SPARK is now called "spark" runtime. The full Ada runtime for entire components written in Ada and using the libc as glue to the underlying system will move to the world repository as "ada" runtime. Issue #3144
14 lines
571 B
Makefile
14 lines
571 B
Makefile
ADA_RTS = $(BUILD_BASE_DIR)/var/libcache/spark
|
|
|
|
ADA_RTS_SOURCE = $(call select_from_ports,ada-runtime)/ada-runtime/contrib/gcc-6.3.0
|
|
ADA_RUNTIME_DIR = $(call select_from_ports,ada-runtime)/ada-runtime/src/minimal
|
|
ADA_RUNTIME_LIB_DIR = $(call select_from_ports,ada-runtime)/ada-runtime/src/lib
|
|
ADA_RUNTIME_PLATFORM_DIR = $(call select_from_ports,ada-runtime)/ada-runtime/platform
|
|
|
|
INC_DIR += $(ADA_RUNTIME_DIR)
|
|
INC_DIR += $(ADA_RUNTIME_LIB_DIR)
|
|
INC_DIR += $(ADA_RTS_SOURCE)
|
|
|
|
# Disable inline concatenation as this requires additinal runtime support
|
|
CC_ADA_OPT += -gnatd.c
|