mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
4a9b1c6aab
This patch introduces a new platform 'linux_arm' for building and running Genode/Linux on an ARM device. Known limitations: - libc 'setjmp()'/'longjmp()' doesn't currently save/restore floating point registers Fixes #746.
31 lines
642 B
Plaintext
31 lines
642 B
Plaintext
#
|
|
# Description of build platform
|
|
#
|
|
|
|
#
|
|
# If you want to build the Linux-specific Genode
|
|
# binaries, use this config option.
|
|
#
|
|
ifeq ($(shell uname -m),x86_64)
|
|
SPECS ?= genode linux_x86_64 sdl
|
|
else
|
|
ifeq ($(shell uname -m),armv6l)
|
|
SPECS ?= genode linux_arm sdl arm_v6
|
|
else
|
|
ifeq ($(shell uname -m),armv7l)
|
|
SPECS ?= genode linux_arm sdl arm_v7a
|
|
else
|
|
SPECS ?= genode linux_x86_32 sdl
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
#
|
|
# If you want to build for the host platform,
|
|
# use the following config option.
|
|
# You need to specify '32bit' additionally to 'host'
|
|
# to include the 32bit-specific Genode include path
|
|
# containing integer definitions.
|
|
#
|
|
#SPECS ?= host 32bit
|