genode/base-linux/etc/specs.conf
Christian Prochaska 4a9b1c6aab base-linux: add ARM support
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.
2013-05-24 14:55:37 +02:00

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