Skip to content

Commit

Permalink
Use CXXFLAGS also for linking when building wxWidgets (google#914)
Browse files Browse the repository at this point in the history
Otherwise the correct -stdlib=libc++ option, which is part of CXXFLAGS
defined in the Docker container, is not used resulting in link errors.
  • Loading branch information
vadz authored and oliverchang committed Oct 25, 2017
1 parent ee358c1 commit 72e9d68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/wxwidgets/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
################################################################################

# build project
./configure --without-subdirs --disable-sys-libs --disable-gui
./configure --without-subdirs --disable-sys-libs --disable-gui LDFLAGS="$CXXFLAGS"
make -j$(nproc) wxbase

# build fuzzers
Expand Down

0 comments on commit 72e9d68

Please sign in to comment.