Skip to content

Commit c272c8b

Browse files
authored
Merge pull request #3158 from kinke/stdcpp
druntime: Include core.stdcpp.* modules
2 parents f1fef15 + b8512eb commit c272c8b

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ include(GetLinuxDistribution)
110110
#
111111

112112
# Version information
113-
set(LDC_VERSION "1.21.0") # May be overridden by git hash tag
113+
set(LDC_VERSION "1.22.0") # May be overridden by git hash tag
114114
set(DMDFE_MAJOR_VERSION 2)
115115
set(DMDFE_MINOR_VERSION 0)
116116
set(DMDFE_PATCH_VERSION 92)

runtime/CMakeLists.txt

-4
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,6 @@ file(GLOB_RECURSE DRUNTIME_D ${RUNTIME_DIR}/src/*.d)
153153
list(REMOVE_ITEM DRUNTIME_D ${RUNTIME_DIR}/src/test_runner.d)
154154
# remove unsupported etc/linux/memoryerror.d (see issue #1915)
155155
list(REMOVE_ITEM DRUNTIME_D ${RUNTIME_DIR}/src/etc/linux/memoryerror.d)
156-
# FIXME: Remove all modules in core/stdcpp/ due to alpha quality.
157-
# See PR #1917; partly fixed upstream.
158-
file(GLOB_RECURSE DRUNTIME_D_STDCPP ${RUNTIME_DIR}/src/core/stdcpp/*.d)
159-
list(REMOVE_ITEM DRUNTIME_D ${DRUNTIME_D_STDCPP})
160156
# remove some modules in rt/
161157
list(REMOVE_ITEM DRUNTIME_D
162158
${RUNTIME_DIR}/src/rt/alloca.d

runtime/StandaloneDRuntimeTests.cmake

+7-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ else()
2727
endif()
2828
endif()
2929

30+
if("${TARGET_SYSTEM}" MATCHES "MSVC")
31+
set(cflags_base "CFLAGS_BASE=")
32+
else()
33+
set(cflags_base "CFLAGS_BASE=-Wall -Wl,-rpath,${CMAKE_BINARY_DIR}/lib${LIB_SUFFIX}")
34+
endif()
35+
3036
if("${TARGET_SYSTEM}" MATCHES "FreeBSD|DragonFly")
3137
set(linkdl "")
3238
else()
@@ -51,8 +57,7 @@ foreach(name ${testnames})
5157
COMMAND ${GNU_MAKE_BIN} -C ${PROJECT_SOURCE_DIR}/druntime/test/${name}
5258
ROOT=${outdir} DMD=${LDMD_EXE_FULL} MODEL=default
5359
DRUNTIME=${druntime_path} DRUNTIMESO=${shared_druntime_path}
54-
CFLAGS_BASE=-Wall\ -Wl,-rpath,${CMAKE_BINARY_DIR}/lib${LIB_SUFFIX}
55-
${linkdl}
60+
${cflags_base} ${linkdl}
5661
)
5762
set_tests_properties(druntime-test-${name}
5863
PROPERTIES DEPENDS clean-druntime-test-${name}

0 commit comments

Comments
 (0)