File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ if(NOT GNU_MAKE_BIN)
5
5
return ()
6
6
endif ()
7
7
8
+ # Support arguments in the LDMD_EXE_FULL argument like in:
9
+ # -DLDMD_EXE_FULL=/path/to/bin/ldmd2;-m32
10
+ string (REPLACE ";" " " LDMD_EXE_FULL_SPACES "${LDMD_EXE_FULL} " )
11
+
8
12
macro (get_subdirs result dir)
9
13
file (GLOB children RELATIVE ${dir} ${dir} /*)
10
14
set (subdir_list "" )
@@ -72,7 +76,7 @@ foreach(name ${testnames})
72
76
)
73
77
add_test (NAME ${fullname}
74
78
COMMAND ${GNU_MAKE_BIN} -C ${PROJECT_SOURCE_DIR} /druntime/test /${name}
75
- ROOT=${outdir} DMD=${LDMD_EXE_FULL } BUILD =${build}
79
+ ROOT=${outdir} DMD=${LDMD_EXE_FULL_SPACES } BUILD =${build}
76
80
DRUNTIME=${druntime_path_build} DRUNTIMESO=${shared_druntime_path_build}
77
81
SHARED=1 ${cflags_base} ${linkdl}
78
82
)
You can’t perform that action at this time.
0 commit comments