Changeset 733

Show
Ignore:
Timestamp:
11/08/07 00:36:09 (1 year ago)
Author:
astrange
Message:

Violently repair Development build, hopefully not affecting Deployment.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Perian.xcodeproj/project.pbxproj

    r729 r733  
    18801880                                GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; 
    18811881                                GCC_WARN_UNUSED_VARIABLE = YES; 
     1882                                GCC_ENABLE_OBJC_GC = YES; 
    18821883                                HEADER_SEARCH_PATHS = ( 
    18831884                                        ffmpeg/libavcodec, 
     
    19011902                                        suppress, 
    19021903                                        "-undefined", 
    1903                                         define_a_way
     1904                                        dynamic_lookup
    19041905                                ); 
    19051906                                OTHER_REZFLAGS = "-rd -d ppc_$(ppc) -d i386_$(i386) -d TARGET_REZ_CARBON_MACHO=1"; 
  • trunk/createStaticLibs.sh

    r732 r733  
    88 
    99generalConfigureOptions="--disable-muxers --disable-strip --enable-pthreads --disable-ffmpeg --disable-network --disable-ffplay --disable-vhook" 
    10 sdkflags="-isysroot $SDKROOT -mmacosx-version-min=$MACOSX_DEPLOYMENT_TARGET
     10sdkflags="-isysroot $SDKROOT -mmacosx-version-min=$MACOSX_DEPLOYMENT_TARGET -gstabs+ -Dattribute_deprecated=
    1111 
    1212if [ "$BUILD_STYLE" = "Development" ] ; then 
    13     generalConfigureOptions="$generalConfigureOptions --disable-opts
     13    generalConfigureOptions="$generalConfigureOptions --disable-optimizations --disable-mmx
    1414fi 
    1515 
     
    7777        mkdir "$BUILDDIR" 
    7878 
    79         export optCFlags="-mtune=nocona -fstrict-aliasing -frerun-cse-after-loop -fweb -falign-loops=16 -gstabs+ -Dattribute_deprecated="  
     79                if [ "$BUILD_STYLE" != "Development" ] ; then 
     80                export optCFlags="-mtune=nocona -fstrict-aliasing -frerun-cse-after-loop -fweb -falign-loops=16"  
     81        fi 
    8082 
    8183        cd "$BUILDDIR" 
     
    9193        if [ "$BUILD_STYLE" = "Development" ] ; then 
    9294            cd libavcodec 
    93             export CFLAGS="-O1 -fomit-frame-pointer -funit-at-a-time"; make h264.o cabac.o i386/dsputil_mmx.o h264_parser.o 
     95            export CFLAGS="-O1 -fomit-frame-pointer -funit-at-a-time"; make h264.o cabac.o h264_parser.o motion_est.o 
    9496            unset CFLAGS; 
    9597            cd .. 
     
    105107        mkdir "$BUILDDIR" 
    106108 
    107         export optCFlags="-mcpu=G3 -mtune=G5 -fstrict-aliasing -funroll-loops -falign-loops=16 -mmultiple -gstabs+ -Dattribute_deprecated=" 
     109                if [ "$BUILD_STYLE" != "Development" ] ; then 
     110                export optCFlags="-mcpu=G3 -mtune=G5 -fstrict-aliasing -funroll-loops -falign-loops=16 -mmultiple" 
     111        fi 
    108112     
    109113        cd "$BUILDDIR"