mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
9 lines
288 B
Bash
Executable file
9 lines
288 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
|
|
libname=${OUTPUT_BASE}${LIBEXT}
|
|
|
|
|
|
$DMD -m${MODEL} -I${EXTRA_FILES} -of${libname} -lib ${EXTRA_FILES}${SEP}lib13666.d
|
|
$DMD -m${MODEL} -I${EXTRA_FILES} -of${OUTPUT_BASE}${EXE} ${EXTRA_FILES}${SEP}test13666.d ${libname}
|
|
rm_retry ${OUTPUT_BASE}{${LIBEXT},${OBJ},${EXE}}
|