From 2904658341603120e675eaad7179f468d9dd9542 Mon Sep 17 00:00:00 2001 From: "Colton G. Rushton" Date: Tue, 19 May 2020 11:04:46 -0300 Subject: [PATCH] Add MSYS2 build fix/simplification Adds the CFLAG normally added during building in MSYS2 to make MSYS2 builds easier to perform. --- tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Makefile b/tools/Makefile index 1809ab92..0d8e6dd7 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -30,7 +30,7 @@ aifc_decode_CFLAGS := -O2 # both runs and compiles faster than -O3 aiff_extract_codebook_SOURCES := aiff_extract_codebook.c tabledesign_SOURCES := sdk-tools/tabledesign/codebook.c sdk-tools/tabledesign/estimate.c sdk-tools/tabledesign/print.c sdk-tools/tabledesign/tabledesign.c -tabledesign_CFLAGS := -Wno-uninitialized -laudiofile +tabledesign_CFLAGS := -Wno-uninitialized -laudiofile -lstdc++ vadpcm_enc_SOURCES := sdk-tools/adpcm/vadpcm_enc.c sdk-tools/adpcm/vpredictor.c sdk-tools/adpcm/quant.c sdk-tools/adpcm/util.c sdk-tools/adpcm/vencode.c vadpcm_enc_CFLAGS := -Wno-unused-result -Wno-uninitialized -Wno-sign-compare -Wno-absolute-value