Skip to content

Commit

Permalink
fix Windows build
Browse files Browse the repository at this point in the history
- add -no-undefined to LDFLAGS, necessary on Windows.
- diff with -b to support windows line endings.
  • Loading branch information
dpirch committed Jun 21, 2018
1 parent ab268e5 commit be527cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ libfvad_int_la_SOURCES = \
# main public libary
lib_LTLIBRARIES = libfvad.la
libfvad_la_SOURCES =
libfvad_la_LDFLAGS = -version-info 0:0:0 -export-symbols-regex '^fvad_'
libfvad_la_LDFLAGS = -version-info 0:0:0 -export-symbols-regex '^fvad_' -no-undefined
libfvad_la_LIBADD = libfvad_int.la


Expand Down
2 changes: 1 addition & 1 deletion tests/wavtest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ for SMPRATE in 8 16 32 48; do
done

echo "comparing result..."
diff "$RESULTFILE" "$EXPECTFILE" || exit 2
diff -b "$RESULTFILE" "$EXPECTFILE" || exit 2

0 comments on commit be527cf

Please sign in to comment.