base-hw: Adaptation to new base library layout

This is a follow-up fix of fae63f4fa9

Fix #18
This commit is contained in:
Martin Stein 2013-02-20 16:59:12 +01:00 committed by Norman Feske
parent 251d08d511
commit 79d5f9c565
5 changed files with 14 additions and 4 deletions

10
base-hw/lib/mk/arm/startup.mk Executable file
View File

@ -0,0 +1,10 @@
#
# \brief Linked against any program expect LDSO and dynamic binaries
# \author Martin Stein
# \date 2012-04-16
#
include $(BASE_DIR)/lib/mk/startup.inc
vpath crt0.s $(REP_DIR)/src/platform/arm

View File

@ -1,3 +1,5 @@
SRC_CC = syscall.cc
vpath syscall.cc $(REP_DIR)/src/base/arm

View File

@ -6,7 +6,7 @@
LIBS += cxx syscall
SRC_CC += ipc.cc ipc/ipc_marshal_cap
SRC_CC += ipc.cc ipc/ipc_marshal_cap.cc
SRC_CC += avl_tree/avl_tree.cc
SRC_CC += allocator/slab.cc
SRC_CC += allocator/allocator_avl.cc

View File

@ -13,8 +13,7 @@ INC_DIR += $(REP_DIR)/src/core/arndale
# add C++ sources
SRC_CC += platform_services.cc \
platform_support.cc \
syscall.cc
platform_support.cc
# add assembly sources
SRC_S += mode_transition.s \
@ -25,7 +24,6 @@ SRC_S += mode_transition.s \
vpath platform_services.cc $(BASE_DIR)/src/core
vpath platform_support.cc $(REP_DIR)/src/core/arndale
vpath mode_transition.s $(REP_DIR)/src/core/arm_v7
vpath syscall.cc $(REP_DIR)/src/base/arm
vpath crt0.s $(REP_DIR)/src/core/arm
#