Ignore:
Timestamp:
Apr 11, 2017, 1:49:44 AM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
sampler
Children:
04d0c89
Parents:
fbafd2c (diff), b762f8d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into sampler

Fixed conflicts:

python/lib/gen_external.py
src/io/source_avcodec.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • scripts/build_mingw

    rfbafd2c rb201912  
    1111set -x
    1212
    13 source VERSION
    14 VERSION="$AUBIO_MAJOR_VERSION.$AUBIO_MINOR_VERSION.$AUBIO_PATCH_VERSION"
    15 VERSION+="$AUBIO_VERSION_STATUS"
     13python this_version.py -v
     14VERSION=`python $PWD/this_version.py -v`
    1615
    1716FFMPEG_BUILDS_URL="https://ffmpeg.zeranoe.com/builds"
    18 FFMPEG_DEFAULT="20170315-6c4665d"
     17FFMPEG_DEFAULT="20170404-1229007"
    1918
    2019# define some default CFLAGS
     
    8079  CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
    8180    ./waf distclean configure build install $WAFOPTS_TGT --testcmd='echo %s'
     81  # fix dll location (see https://github.com/waf-project/waf/issues/1860)
     82  mv $DESTDIR/lib/libaubio-5.dll $DESTDIR/bin
     83  # generate def file (see https://github.com/aubio/aubio/issues/97)
     84  ( echo -e "EXPORTS"; $NM $DESTDIR/bin/libaubio-5.dll | grep T\  | \
     85    egrep "(aubio|fvec|cvec|lvec|fmat)" | sed 's/^.* T _\?//' ) \
     86    > $DESTDIR/bin/libaubio-5.def
    8287  zip -r $DESTDIR.zip `basename $DESTDIR`
    8388  rm -rf $DESTDIR
     
    8893  TARGET=win32
    8994  export CC=i686-w64-mingw32-gcc
     95  export NM=i686-w64-mingw32-nm
    9096  build_mingw
    9197}
     
    94100  TARGET=win64
    95101  export CC=x86_64-w64-mingw32-gcc
     102  export NM=x86_64-w64-mingw32-nm
    96103  build_mingw
    97104}
Note: See TracChangeset for help on using the changeset viewer.