2014-05-07 21:52:52 +00:00
|
|
|
STDCXX_PORT_DIR := $(call select_from_ports,stdcxx)
|
|
|
|
|
2017-04-09 19:02:41 +00:00
|
|
|
include $(REP_DIR)/lib/import/import-stdcxx.mk
|
|
|
|
|
2012-08-31 15:13:06 +00:00
|
|
|
# determine location of libstdc++ source tree
|
2014-05-07 21:52:52 +00:00
|
|
|
STDCXX_DIR := $(STDCXX_PORT_DIR)/src/lib/stdcxx
|
|
|
|
|
2017-04-09 19:02:41 +00:00
|
|
|
# enable 'compatibility-atomic-c++0x.cc' to find 'gstdint.h'
|
2017-12-19 17:18:59 +00:00
|
|
|
REP_INC_DIR += include/stdcxx/bits
|
2014-05-07 21:52:52 +00:00
|
|
|
|
2012-11-08 13:10:34 +00:00
|
|
|
# add libstdc++ sources
|
|
|
|
SRC_CC += $(filter-out $(FILTER_OUT),$(notdir $(wildcard $(STDCXX_DIR)/src/c++11/*.cc)))
|
2012-08-31 15:13:06 +00:00
|
|
|
|
|
|
|
# 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
|
2017-04-09 19:02:41 +00:00
|
|
|
SRC_CC += del_op.cc del_opnt.cc del_ops.cc del_opv.cc del_opvnt.cc del_opvs.cc
|
2015-05-13 10:33:21 +00:00
|
|
|
SRC_CC += bad_array_length.cc bad_array_new.cc bad_cast.cc bad_alloc.cc bad_typeid.cc
|
2012-08-31 15:13:06 +00:00
|
|
|
SRC_CC += eh_aux_runtime.cc hash_bytes.cc
|
2014-04-03 15:39:19 +00:00
|
|
|
SRC_CC += tinfo.cc
|
2012-08-31 15:13:06 +00:00
|
|
|
INC_DIR += $(STDCXX_DIR)/libsupc++
|
|
|
|
|
2017-04-09 19:02:41 +00:00
|
|
|
LIBS += stdcxx-c++98 libc libm
|
2012-08-31 15:13:06 +00:00
|
|
|
|
2012-11-08 13:10:34 +00:00
|
|
|
vpath %.cc $(STDCXX_DIR)/src/c++11
|
2012-08-31 15:13:06 +00:00
|
|
|
vpath %.cc $(STDCXX_DIR)/libsupc++
|
|
|
|
|
|
|
|
SHARED_LIB = yes
|
2018-01-03 17:40:54 +00:00
|
|
|
|
|
|
|
CC_CXX_WARN_STRICT =
|