mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
7f73e5e879
This patch moves details about the stack allocation and organization the base-internal headers. Thereby, I replaced the notion of "thread contexts" by "stacks" as this term is much more intuitive. The fact that we place thread-specific information at the bottom of the stack is not worth introducing new terminology. Issue #1832
24 lines
570 B
Makefile
24 lines
570 B
Makefile
#
|
|
# Specifics for Linux on ARM
|
|
#
|
|
SPECS += linux arm
|
|
|
|
ifeq ($(shell gcc -dumpmachine),arm-linux-gnueabihf)
|
|
CC_MARCH += -mfloat-abi=hard
|
|
endif
|
|
|
|
#
|
|
# We need to manually add the default linker script on the command line in case
|
|
# of standard library use. Otherwise, we were not able to extend it by the
|
|
# stack area section.
|
|
#
|
|
ifeq ($(USE_HOST_LD_SCRIPT),yes)
|
|
LD_SCRIPT_STATIC = ldscripts/armelf_linux_eabi.xc
|
|
endif
|
|
|
|
#
|
|
# Include less-specific configuration
|
|
#
|
|
include $(call select_from_repositories,mk/spec/arm.mk)
|
|
include $(call select_from_repositories,mk/spec/linux.mk)
|