You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Makefile passes $(CFLAGS) to $(CXX). It should pass $(CXXFLAGS) instead.
Furthermore, it defines its own CFLAGS, rather than honoring flags the user might supply when invoking make. This causes the build to fail if the user wants to supply flags that are required for the build to succeed.
The Makefile passes
$(CFLAGS)
to$(CXX)
. It should pass$(CXXFLAGS)
instead.Furthermore, it defines its own
CFLAGS
, rather than honoring flags the user might supply when invokingmake
. This causes the build to fail if the user wants to supply flags that are required for the build to succeed.This was discovered because liblinear is included in nmap. See the nmap bug report here: nmap/nmap#1161 and the MacPorts project's bug report here: https://trac.macports.org/ticket/53995
The text was updated successfully, but these errors were encountered: