mirror of
https://github.com/dlang/dmd.git
synced 2025-04-29 14:40:12 +03:00
6 lines
225 B
Bash
Executable file
6 lines
225 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
dir=${RESULTS_DIR}/compilable
|
|
output_file=${dir}/jsonNoOutFile.sh.out
|
|
$DMD -c -od=${dir} -Xi=compilerInfo compilable/extra-files/emptymain.d > ${output_file}
|
|
rm -f emptymain.json || true
|