mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +00:00
f5be746894
Issue #1085
24 lines
507 B
Makefile
24 lines
507 B
Makefile
include $(REP_DIR)/lib/mk/libc-gen.inc
|
|
|
|
LIBC_GEN_I386_DIR = $(LIBC_DIR)/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)
|