Ticket #1096: tango-build-verbose.patch
| File tango-build-verbose.patch, 1.1 kB (added by afb, 6 months ago) |
|---|
-
lib/build-tango.sh
old new 19 19 Options: 20 20 --help: Will print this help text 21 21 --warn: Will enable warnings 22 --verbose: Increase verbosity 22 23 <identifier> is one of {dmd, gdc, mac} and will build libtango.a, 23 24 libgtango.a or universal Mac binaries respectively 24 25 … … 31 32 UNAME=`uname` 32 33 INLINE="-inline" 33 34 WARN="" 35 VERBOSE=0 34 36 35 37 # Compiler specific includes 36 38 . dmdinclude … … 97 99 98 100 if filter $OBJNAME 99 101 then 102 if [ $VERBOSE == 1 ]; then echo "[$DC] $FILENAME"; fi 100 103 $DC $WARN -c $INLINE -release -O -version=Posix -version=Tango -of$OBJNAME $FILENAME 101 104 ar -r lib/$LIB $OBJNAME 2>&1 | grep -v "ranlib: .* has no symbols" 102 105 rm $OBJNAME … … 150 153 --warn) 151 154 WARN="-w" 152 155 ;; 156 --verbose) 157 VERBOSE=1 158 ;; 153 159 dmd) 154 160 build dmd libtango-user-dmd.a libtango-base-dmd.a 155 161 ;;










