With this patch the existing Noux run scripts except the tool chain script can be executed on the ARM platform. Fixes #229.
15 lines
379 B
Makefile
15 lines
379 B
Makefile
NOUX_CONFIGURE_ARGS = --without-bash-malloc
|
|
NOUX_CFLAGS += -Dsh_xfree=free
|
|
|
|
#
|
|
# Do not expect the environment to be passed as third argument
|
|
# to the main function. The Genode startup code does only
|
|
# deliver 'argc' and 'argv'.
|
|
#
|
|
NOUX_CFLAGS += -DNO_MAIN_ENV_ARG=1
|
|
|
|
# Prevent interactions with nonexisting tty driver
|
|
NOUX_CFLAGS += -DNO_TTY_DRIVER
|
|
|
|
include $(REP_DIR)/mk/noux.mk
|