mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-03 04:26:45 +00:00
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
|
# determine location of libstdc++ source tree
|
||
|
include $(REP_DIR)/ports/stdcxx.inc
|
||
|
STDCXX_DIR = $(REP_DIR)/contrib/$(STDCXX)
|
||
|
|
||
|
# enable 'atomic.cc' to find 'gstdint.h'
|
||
|
INC_DIR += $(REP_DIR)/include/stdcxx-genode/bits
|
||
|
|
||
|
# exclude code that is no single compilation unit
|
||
|
FILTER_OUT = hash-long-double-aux.cc
|
||
|
|
||
|
# exclude deprecated parts
|
||
|
FILTER_OUT += strstream.cc
|
||
|
|
||
|
# add libsupc++ sources
|
||
|
SRC_CC = $(filter-out $(FILTER_OUT),$(notdir $(wildcard $(STDCXX_DIR)/src/*.cc)))
|
||
|
|
||
|
# add config/locale/generic sources
|
||
|
SRC_CC += $(notdir $(wildcard $(STDCXX_DIR)/config/locale/generic/*.cc))
|
||
|
|
||
|
CC_OPT += -D__GXX_EXPERIMENTAL_CXX0X__ -std=c++0x
|
||
|
|
||
|
# add config/io backend
|
||
|
SRC_CC += basic_file_stdio.cc
|
||
|
INC_DIR += $(STDCXX_DIR)/config/io
|
||
|
|
||
|
# add bits of libsupc++ (most parts are already contained in the cxx library)
|
||
|
SRC_CC += new_op.cc new_opnt.cc new_opv.cc new_opvnt.cc new_handler.cc
|
||
|
SRC_CC += del_op.cc del_opnt.cc del_opv.cc del_opvnt.cc
|
||
|
SRC_CC += bad_cast.cc bad_alloc.cc bad_typeid.cc
|
||
|
SRC_CC += eh_aux_runtime.cc hash_bytes.cc
|
||
|
INC_DIR += $(STDCXX_DIR)/libsupc++
|
||
|
|
||
|
include $(REP_DIR)/lib/import/import-stdcxx.mk
|
||
|
|
||
|
vpath %.cc $(STDCXX_DIR)/src
|
||
|
vpath %.cc $(STDCXX_DIR)/config/locale/generic
|
||
|
vpath %.cc $(STDCXX_DIR)/config/io
|
||
|
vpath %.cc $(STDCXX_DIR)/libsupc++
|
||
|
|
||
|
SHARED_LIB = yes
|