source: scripts/build_mingw @ a60f790

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5
Last change on this file since a60f790 was a500a392, checked in by Paul Brossier <piem@piem.org>, 6 years ago

scripts/build_mingw: use def file created at build time

  • Property mode set to 100755
File size: 3.0 KB
Line 
1#! /bin/bash
2
3# This script cross compiles aubio for windows using mingw, four times:
4#
5#  - 32 and 64 bits with no external dependencies
6#  - 32 and 64 bits against ffmpeg
7#
8# On debian or ubuntu, you will want to 'apt-get install gcc-mingw-w64'
9
10set -e
11set -x
12
13python this_version.py -v
14VERSION=`python $PWD/this_version.py -v`
15
16FFMPEG_BUILDS_URL="https://ffmpeg.zeranoe.com/builds"
17FFMPEG_DEFAULT="20170404-1229007"
18
19# define some default CFLAGS
20DEF_CFLAGS="-Os -I/usr/share/mingw-w64"
21DEF_LDFLAGS=""
22
23WAFOPTS=""
24# disable external deps to make sure we don't try to use the host package
25WAFOPTS+=" --disable-samplerate --disable-jack --disable-sndfile"
26# enable ffmpeg build
27WAFOPTS+=" --disable-avcodec"
28# install without a prefix
29WAFOPTS+=" --prefix=/"
30# compile the tests, but fake running them
31# passing this option WAFOPTS fails (escaping?), added in actual waf call below
32#WAFOPTS+=" --testcmd='echo %s'"
33
34# debugging
35#WAFOPTS+=" -v"
36#WAFOPTS+=" -j1"
37#WAFOPTS+=" --notests"
38
39function fetch_ffpmeg() {
40  ## manually add ffmpeg (no pkg-config .pc files in bins)
41  [ -n "$FFMPEG_VERSION" ] || FFMPEG_VERSION=$FFMPEG_DEFAULT
42  FFMPEG_TARBALL="$PWD/ffmpeg-$FFMPEG_VERSION-$TARGET-dev.zip"
43  FFMPEG_BINARIES="${FFMPEG_TARBALL%%.zip}"
44  if [ ! -d "$FFMPEG_BINARIES" ]
45  then
46    if [ ! -f "$FFMPEG_TARBALL" ]
47    then
48      curl -O $FFMPEG_BUILDS_URL/$TARGET/dev/ffmpeg-$FFMPEG_VERSION-$TARGET-dev.zip
49    else
50      echo "using $FFMPEG_TARBALL"
51    fi
52    unzip -x $FFMPEG_TARBALL
53  else
54    echo "using $FFMPEG_BINARIES"
55  fi
56}
57
58function get_cflags() {
59  CFLAGS="$DEF_CFLAGS"
60  LDFLAGS="$DEF_LDFLAGS"
61  if [ -n "$WITH_FFMEG" ]
62  then
63    fetch_ffpmeg
64    CFLAGS+=" -DHAVE_LIBAV=1 -DHAVE_SWRESAMPLE=1"
65    CFLAGS+=" -I$FFMPEG_BINARIES/include"
66    LDFLAGS+=" -lavcodec -lavformat -lavutil -lswresample"
67    LDFLAGS+=" -L$FFMPEG_BINARIES/lib"
68  fi
69}
70
71function build_mingw() {
72  DESTDIR="$PWD/aubio-$VERSION-$TARGET"
73  [ -n "$WITH_FFMEG" ] && DESTDIR+="-ffmpeg"
74  [ -f $DESTDIR.zip ] && echo "Remove existing $DESTDIR.zip first" && exit 1
75  [ -d $DESTDIR ] && rm -rf $DESTDIR
76  WAFOPTS_TGT="$WAFOPTS --destdir=$DESTDIR"
77  WAFOPTS_TGT+=" --with-target-platform=$TARGET"
78  get_cflags
79  CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
80    ./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  mv $DESTDIR/lib/libaubio-5.def $DESTDIR/bin
84  zip -r $DESTDIR.zip `basename $DESTDIR`
85  rm -rf $DESTDIR
86  sha256sum $DESTDIR.zip > $DESTDIR.zip.sha256
87}
88
89function build_mingw32() {
90  TARGET=win32
91  export CC=i686-w64-mingw32-gcc
92  export NM=i686-w64-mingw32-nm
93  build_mingw
94}
95
96function build_mingw64() {
97  TARGET=win64
98  export CC=x86_64-w64-mingw32-gcc
99  export NM=x86_64-w64-mingw32-nm
100  build_mingw
101}
102
103# fetch waf if needed
104[ -f "waf" ] || make getwaf
105
106# first build without ffmpeg
107build_mingw32
108build_mingw64
109
110# then build against ffmpeg
111WITH_FFMEG=1
112build_mingw32
113build_mingw64
114
115set +x
116echo ""
117echo "All done! The following files were generated:"
118echo ""
119ls -lart aubio*.zip*
Note: See TracBrowser for help on using the repository browser.