mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
8 lines
298 B
Bash
Executable file
8 lines
298 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
$DMD -m${MODEL} -I${EXTRA_FILES} -lib -of${OUTPUT_BASE}a${LIBEXT} ${EXTRA_FILES}${SEP}lib13774a.d
|
|
$DMD -m${MODEL} -I${EXTRA_FILES} -lib -of${OUTPUT_BASE}b${LIBEXT} ${EXTRA_FILES}${SEP}lib13774b.d ${OUTPUT_BASE}a${LIBEXT}
|
|
|
|
rm_retry ${OUTPUT_BASE}{a${LIBEXT},b${LIBEXT}}
|