Changeset 180

Show
Ignore:
Timestamp:
11/02/06 21:26:37 (2 years ago)
Author:
gbooker
Message:

Manually build h264.o and cabac.o with different options so that we can work around the fact that they can't build on intel without -O3 and -fomit-frame-pointer

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/createStaticLibs.sh

    r178 r180  
    4444        make -C libpostproc depend 
    4545        make -C vhook       depend 
     46if [ "$BUILD_STYLE" = "Development" ] ; then 
     47        cd libavcodec 
     48        export CFLAGS="-O3 -fomit-frame-pointer"; make h264.o cabac.o 
     49        unset CFLAGS; 
     50        cd .. 
     51fi 
    4652        make -j3            lib 
    4753