2013-12-05 14:45:14 +00:00
|
|
|
#
|
|
|
|
# \brief Basic definitions for all rump libraries
|
|
|
|
# \author Sebastian Sumpf
|
|
|
|
# \date 2013-12-12
|
|
|
|
#
|
|
|
|
|
2014-05-23 15:54:04 +00:00
|
|
|
RUMP_CONTRIB_DIR := $(call select_from_ports,dde_rump)/src/lib/dde_rump
|
|
|
|
RUMP_BASE = $(BUILD_BASE_DIR)/var/libcache/rump
|
|
|
|
RUMP_LIB = $(RUMP_BASE)/lib
|
2013-12-05 14:45:14 +00:00
|
|
|
|
|
|
|
SHARED_LIB = yes
|
|
|
|
|
|
|
|
#
|
|
|
|
# ARCHIVE contains the absolute paths to rump-archive libraries, rump.ld is an
|
|
|
|
# additional linker script which is required during initialization
|
|
|
|
#
|
|
|
|
LD_OPT += --whole-archive --start-group $(ARCHIVE) --end-group \
|
|
|
|
--no-whole-archiv
|
|
|
|
|
2015-09-03 12:55:05 +00:00
|
|
|
LD_SCRIPT_SO = $(call select_from_repositories,src/ld/genode_rel.ld) \
|
|
|
|
-T$(REP_DIR)/src/ld/rump.ld
|
2013-12-05 14:45:14 +00:00
|
|
|
|
|
|
|
# vi:set ft=make :
|