genode/repos/libports/lib/mk/arm/libc-setjmp.mk
Norman Feske ca971bbfd8 Move repositories to 'repos/' subdirectory
This patch changes the top-level directory layout as a preparatory
step for improving the tools for managing 3rd-party source codes.
The rationale is described in the issue referenced below.

Issue #1082
2014-05-14 16:08:00 +02:00

20 lines
370 B
Makefile

LIBC_GEN_ARM_DIR = $(LIBC_DIR)/libc/arm/gen
SRC_S = _setjmp.S setjmp.S
#
# Remove 'longjmperror' call
#
CC_OPT += -D_STANDALONE
#
# Needed to compile on hard-float Linux
# FIXME: Floating point registers don't get saved/restored
# when using this definition!
#
CC_OPT += -D__SOFTFP__
include $(REP_DIR)/lib/mk/libc-common.inc
vpath %.S $(LIBC_GEN_ARM_DIR)