comparison bin/ldmd @ 986:a8cb25d478c4

Use LLVM-style command line (instead of DMD-style) Note: For a backward compatible interface, use the new bin/ldmd script. It supports all old options while passing on anything it doesn't recognize. Some changes caused by this: * -debug and -version are now -d-debug and -d-version due to a conflict with standard LLVM options. * All "flag" options now allow an optional =true/=1/=false/=0 suffix. * Some "hidden debug switches" starting with "--" were renamed because LLVM doesn't care about the number of dashes, so they were conflicting with other options (such as -c). The new versions start with "-hidden-debug-" instead of "--" * --help works, but has a non-zero exit code. This breaks some Tango scripts which use it to test for compiler existence. See tango.patch. Some changes not (directly) caused by this; * (-enable/-disable)-FOO options are now available for pre- and postconditions. * -march is used instead of -m (like other LLVM programs), but -m is an alias for it. * -defaultlib, -debuglib, -d-debug and -d-version allow comma-separated values. The effect should be identical to specifying the same option multiple times. I decided against allowing these for some other options because paths might contain commas on some systems. * -fPIC is removed in favor of the standard LLVM option -relocation-model=pic Bug: * If -run is specified as the last argument in DFLAGS, no error is generated. (Not very serious IMHO)
author Frits van Bommel <fvbommel wxs.nl>
date Wed, 25 Feb 2009 17:34:51 +0100
parents
children 599e3d6d0dbd
comparison
equal deleted inserted replaced
985:bce024c60adc 986:a8cb25d478c4
1 #! /usr/bin/env bash
2
3 # Default to 'ldc' next to this file
4 LDC=`basename "$0"`/ldc
5 if [ ! -x "$LDC" ]; then
6 # If that doesn't work, assume this script was called via $PATH
7 # and do the same for ldc
8 if which ldc &> /dev/null; then
9 LDC=ldc
10 else
11 echo 'ldc not found, check your installation' >/dev/stderr
12 exit 1
13 fi
14 fi
15
16 declare -a ARGS
17 SeenFile=0
18 IDX=0
19 for arg; do
20 case "$arg" in
21 -debug|-debug=*|-version=*)
22 arg="-d$arg"
23 ;;
24 -fPIC)
25 arg="-relocation-model=pic"
26 ;;
27 --a|--b|--c|--f|--r|--w|--x|--y)
28 # "Hidden debug switches"
29 # Are these ever used?
30 arg="-hidden-debug${arg:1}"
31 ;;
32 -*)
33 ;;
34 *)
35 SeenFile=1
36 ;;
37 esac
38 ARGS[IDX++]="$arg"
39 done
40
41 exec "$LDC" "${ARGS[@]}"