Changeset 3698
- Timestamp:
- 07/02/08 15:10:50 (2 months ago)
- Files:
-
- trunk/lib/build-tango.sh (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/build-tango.sh
r3541 r3698 19 19 Options: 20 20 --help: Will print this help text 21 --noinline: Will turn off inlining 22 --norelease: Drops optimzations 23 --debug: Will enable debug info 21 24 --warn: Will enable warnings 22 25 --verbose: Increase verbosity … … 32 35 UNAME=`uname` 33 36 INLINE="-inline" 37 DEBUG="" 38 RELEASE="-release -O" 34 39 WARN="" 35 40 VERBOSE=0 … … 101 106 then 102 107 if [ $VERBOSE == 1 ]; then echo "[$DC] $FILENAME"; fi 103 $DC $WARN -c $INLINE -release -O-version=Posix -version=Tango -of$OBJNAME $FILENAME108 $DC $WARN -c $INLINE $DEBUG $RELEASE -version=Posix -version=Tango -of$OBJNAME $FILENAME 104 109 if [ "$?" != 0 ] 105 110 then … … 167 172 WARN="-w" 168 173 ;; 174 --debug) 175 DEBUG="-g -debug" 176 ;; 177 --norelease) 178 RELEASE="" 179 ;; 180 --noinline) 181 INLINE="" 182 ;; 169 183 --verbose) 170 184 VERBOSE=1












