ports/devel/flang/files/flang.in
Johannes M Dieterich e99fdbeceb devel/flang: silence warnings caused by the wrapper script shortcomings and only add linking flags if needed.
PR:		220588
Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Obtained from:	PR220588 (with changes)
Differential Revision:	https://reviews.freebsd.org/D13371
2017-12-12 02:43:49 +00:00

10 lines
262 B
Bash

#!/bin/sh
FLANG_CFS="-I%%PREFIX%%/flang/include"
FLANG_LFS="-L%%PREFIX%%/flang/lib -lflang -lflangmain -lflangrti -lompstub -lexecinfo"
for arg in $@; do
case "$arg" in
-c|-E) FLANG_LFS="";;
esac
done
exec %%PREFIX%%/flang/bin/flang $FLANG_LFS $FLANG_CFS $@