Changeset 3496
- Timestamp:
- 05/10/08 04:31:32 (5 months ago)
- Files:
-
- trunk/lib/build-tango.sh (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/build-tango.sh
r3457 r3496 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 … … 32 33 INLINE="-inline" 33 34 WARN="" 35 VERBOSE=0 34 36 35 37 # Compiler specific includes … … 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" … … 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












