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
Check contents of dynfilters/Makefile file where LDFLAGS is defined as LDFLAGS=
Workaround:
There are two ways to proceed with compilation.
First approach depends on your compiler. If you use GCC, you can insert $DEVLIBPATH/lib into LIBRARY_PATH variable. This will guide the compiler to search that path for libfl (-lfl) instead of failing. LIBRARY_PATH is different than LD_LIBRARY_PATH so pay attention.
Second approach relies on dirty replacement of LDFLAGS to match what was passed during ./configure ... step. After performing step 3, run sed to replace LDFLAGS with the expected value: sed 's!^LDFLAGS=$!LDFLAGS='-L$DEVLIBPATH/lib'!' dynfilters/Makefile
After applying this workaround, you should be able to proceed with make && make check && make install
The text was updated successfully, but these errors were encountered:
Found in version:
How to reproduce the issue?
$DEVLIBPATH/lib
../configure --prefix=$DEVLIBPATH LDFLAGS='-L$DEVLIBPATH/lib'
dynfilters/Makefile
file whereLDFLAGS
is defined asLDFLAGS=
Workaround:
There are two ways to proceed with compilation.
First approach depends on your compiler. If you use GCC, you can insert
$DEVLIBPATH/lib
intoLIBRARY_PATH
variable. This will guide the compiler to search that path for libfl (-lfl
) instead of failing.LIBRARY_PATH
is different thanLD_LIBRARY_PATH
so pay attention.Second approach relies on dirty replacement of
LDFLAGS
to match what was passed during./configure ...
step. After performing step 3, runsed
to replaceLDFLAGS
with the expected value:sed 's!^LDFLAGS=$!LDFLAGS='-L$DEVLIBPATH/lib'!' dynfilters/Makefile
After applying this workaround, you should be able to proceed with
make && make check && make install
The text was updated successfully, but these errors were encountered: