genode/base-linux/etc/specs.conf

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