genode/base-linux/etc/specs.conf

31 lines
642 B
Plaintext
Raw Normal View History

2011-12-22 16:19:25 +01:00
#
# 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
2011-12-22 16:19:25 +01:00
SPECS ?= genode linux_x86_32 sdl
endif
endif
endif
2011-12-22 16:19:25 +01:00
#
# 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