mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
ada-runtime: add s-expint.ad*
* switch to fork of the Ada runtime provided by m-stein * switch to a Ada-runtime state that provides the Exp_Int package (exponential function on integers) * adapt spark lib, symbols, and recipes to incorporate the Exp_Int package Fixes #3848
This commit is contained in:
parent
f3eaeb08ef
commit
2e3b11b354
@ -11,7 +11,7 @@ SRC_ADS += system.ads \
|
||||
a-except.ads \
|
||||
ada.ads
|
||||
|
||||
SRC_ADB += s-stalib.adb s-secsta.adb s-parame.adb i-c.adb s-arit64.adb s-stoele.adb s-init.adb
|
||||
SRC_ADB += s-stalib.adb s-secsta.adb s-parame.adb i-c.adb s-arit64.adb s-expint.adb s-stoele.adb s-init.adb
|
||||
CUSTOM_ADA_FLAGS = --RTS=$(ADA_RTS) -c -gnatg -gnatp -gnatpg -gnatn2
|
||||
|
||||
# C runtime glue code
|
||||
@ -39,6 +39,7 @@ vpath s-parame.adb $(ADA_RUNTIME_DIR)
|
||||
vpath a-except.adb $(ADA_RUNTIME_DIR)
|
||||
vpath i-c.adb $(ADA_RUNTIME_DIR)
|
||||
vpath s-arit64.adb $(ADA_RUNTIME_DIR)
|
||||
vpath s-expint.adb $(ADA_RUNTIME_DIR)
|
||||
vpath system.ads $(ADA_RUNTIME_DIR)
|
||||
vpath s-stoele.adb $(ADA_RUNTIME_DIR)
|
||||
vpath s-init.adb $(ADA_RUNTIME_DIR)
|
||||
|
@ -152,6 +152,7 @@ system__default_priority R 4
|
||||
system__denorm R 1
|
||||
system__duration_32_bits R 1
|
||||
system__exit_status_supported R 1
|
||||
system__exp_int__exp_integer T
|
||||
system__fractional_fixed_ops R 1
|
||||
system__front_end_zcx_support R 1
|
||||
system__frontend_exceptions R 1
|
||||
|
@ -1 +1 @@
|
||||
db898737bfc7439e637065a8f975097aad4741dc
|
||||
fabce1ce8b266d045615050e8e326159ae888a0d
|
||||
|
@ -2,10 +2,10 @@ LICENSE := AGPLv3 + GCC runtime library exception
|
||||
VERSION := 0
|
||||
DOWNLOADS := ada-runtime.git ada-runtime-alis.git
|
||||
|
||||
URL(ada-runtime) := https://github.com/Componolit/ada-runtime.git
|
||||
REV(ada-runtime) := e09f9981ad7e02407b1710b80b701384ef5c32f7
|
||||
URL(ada-runtime) := https://github.com/m-stein/ada-runtime.git
|
||||
REV(ada-runtime) := 6e3e054e6de7b8b355d42b6b4107fe9a6ba08142
|
||||
DIR(ada-runtime) := ada-runtime
|
||||
|
||||
URL(ada-runtime-alis) := https://github.com/Componolit/ada-runtime-alis.git
|
||||
REV(ada-runtime-alis) := a679a4097b416360efa9b37a4184479ce5adbae0
|
||||
URL(ada-runtime-alis) := https://github.com/cnuke/ada-runtime-alis.git
|
||||
REV(ada-runtime-alis) := c8df42f821cf1ec4c56dd2c6fc5939fcde39a2d5
|
||||
DIR(ada-runtime-alis) := ada-runtime-alis
|
||||
|
@ -15,6 +15,7 @@ MIRROR_FROM_ADA_RT_DIR := \
|
||||
i-c.ads \
|
||||
system.ads \
|
||||
s-arit64.ads \
|
||||
s-expint.ads \
|
||||
s-exctab.ads \
|
||||
s-parame.ads \
|
||||
s-secsta.ads \
|
||||
@ -47,6 +48,7 @@ MIRROR_FROM_ADA_ALI_DIR := \
|
||||
i-cexten.ali \
|
||||
interfac.ali \
|
||||
s-arit64.ali \
|
||||
s-expint.ali \
|
||||
s-init.ali \
|
||||
s-parame.ali \
|
||||
s-secsta.ali \
|
||||
|
@ -17,6 +17,8 @@ MIRROR_FROM_ADA_RT_DIR := \
|
||||
system.ads \
|
||||
s-arit64.ads \
|
||||
s-arit64.adb \
|
||||
s-expint.ads \
|
||||
s-expint.adb \
|
||||
s-exctab.ads \
|
||||
s-exctab.adb \
|
||||
s-parame.ads \
|
||||
|
Loading…
Reference in New Issue
Block a user