~srba/verifytapn/trunk

« back to all changes in this revision

Viewing changes to src/compile-mac-32-64.sh

  • Committer: Jiri Srba
  • Date: 2011-06-18 16:16:13 UTC
  • Revision ID: srba@cs.aau.dk-20110618161613-f535moudvv5gmd8p
made the script executable

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
g++ -DBOOST_DISABLE_THREADS -DNDEBUG -DDISABLE_ASSERTX -O3 -Wall -mtune=core2 \
19
19
    $src $inc64 $lib64 -o verifytapn64 && \
20
 
echo "64-bit OK" &
 
20
echo "64-bit mac OK" &
21
21
 
22
22
g++ -DBOOST_DISABLE_THREADS -DNDEBUG -DDISABLE_ASSERTX -O3 -Wall -mtune=core2 -m32 \
23
23
    $src $inc32 $lib32 -o verifytapn32 && \
24
 
echo "32-bit OK"  &
 
24
echo "32-bit mac OK"  &
25
25
 
26
26
wait