mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-30 18:47:01 +00:00
85a2ebc1c4
Issue #1082
24 lines
511 B
Makefile
24 lines
511 B
Makefile
include $(REP_DIR)/lib/mk/libc-gen.inc
|
|
|
|
LIBC_GEN_I386_DIR = $(LIBC_DIR)/lib/libc/i386/gen
|
|
|
|
FILTER_OUT_S += rfork_thread.S _setjmp.S setjmp.S
|
|
FILTER_OUT_C += _set_tp.c
|
|
|
|
#
|
|
# Filter functions conflicting with libm
|
|
#
|
|
FILTER_OUT_S += fabs.S modf.S
|
|
FILTER_OUT_C += frexp.c
|
|
|
|
SRC_S = $(filter-out $(FILTER_OUT_S),$(notdir $(wildcard $(LIBC_GEN_I386_DIR)/*.S)))
|
|
SRC_C += flt_rounds.c
|
|
|
|
#
|
|
# Additional functions for shared libraries
|
|
#
|
|
SRC_C += makecontext.c
|
|
|
|
vpath %.c $(LIBC_GEN_I386_DIR)
|
|
vpath %.S $(LIBC_GEN_I386_DIR)
|