Skip to content

Commit

Permalink
MISC: macbuild.sh: HLS doesn't work on macOS right now, skip make check
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Westerfeld <[email protected]>
  • Loading branch information
swesterfeld committed Jun 7, 2024
1 parent 15492fe commit b78f3f0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions misc/macbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,18 @@ cmake .
sudo make install
cd ..
export DYLD_LIBRARY_PATH=/usr/local/lib:$DYLD_LIBRARY_PATH

# build audiowmark
./autogen.sh
NPROC=`sysctl -n hw.ncpu`
make -j $NPROC
make -j $NPROC check
# build audiowmark with ffmpeg support

# test build audiowmark with ffmpeg support
make clean
./autogen.sh --with-ffmpeg
make -j $NPROC
make -j $NPROC check

### unfortunately HLS is currently broken on macOS, so although it builds, make check will fail
###
###make -j $NPROC check

0 comments on commit b78f3f0

Please sign in to comment.