mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 14:37:50 +00:00
e60b597af5
GCC version 7 and above generate calls to __divmoddi for 64bit integer division on 32-bit. Unfortunately, libgcc liberaries of older compilers lack this symbol and are still in use by Debian/Ubuntu LTS at least.
14 lines
465 B
Makefile
14 lines
465 B
Makefile
SRC_CC += lx_hybrid.cc new_delete.cc capability_space.cc
|
|
SRC_CC += signal_transmitter.cc signal.cc
|
|
SRC_C += libgcc.c
|
|
|
|
vpath new_delete.cc $(BASE_DIR)/src/lib/cxx
|
|
vpath lx_hybrid.cc $(REP_DIR)/src/lib/lx_hybrid
|
|
vpath libgcc.c $(REP_DIR)/src/lib/lx_hybrid
|
|
|
|
# add parts of the base library that are shared with core
|
|
LIBS += base-linux-common timeout
|
|
|
|
# non-core parts of the base library (except for the startup code)
|
|
include $(REP_DIR)/lib/mk/base-linux.inc
|