diff options
author | dx <dx@dxzone.com.ar> | 2017-06-02 01:53:09 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-02 01:53:09 -0300 |
commit | 784358632371008591731879f5ae20e3a0afb3db (patch) | |
tree | 5d70c660d6132029515d7d9bbf222a30eb02da14 | |
parent | 2d0a9b4ca30ab09ccf5a84d267a824e2a2059d70 (diff) | |
parent | 1ce9e07be0ad33fbdac9413e9045c45e66afff37 (diff) | |
download | irssi-784358632371008591731879f5ae20e3a0afb3db.zip |
Merge pull request #713 from josephbisch/fix-fe-fuzz-link
Use CXX for fe-fuzz linking
-rw-r--r-- | src/fe-fuzz/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-fuzz/Makefile.am b/src/fe-fuzz/Makefile.am index 3a547c66..c11b3dbb 100644 --- a/src/fe-fuzz/Makefile.am +++ b/src/fe-fuzz/Makefile.am @@ -1,7 +1,7 @@ bin_PROGRAMS = irssi-fuzz -# Force link with clang++ for libfuzzer support -CCLD=clang++ $(CXXFLAGS) +# Force link with CXX for libfuzzer support +CCLD=$(CXX) $(CXXFLAGS) AM_CPPFLAGS = \ -I$(top_srcdir)/src \ |