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
In order to complete the sequence
./bootstrap.sh
./configure
make
successfully, I first had to edit makefile.in so that "-lm" appeared after, not before, "$<" in the compile command lines. Otherwise, math library symbols were not found because the math library was not in line to be searched after the source file. FWIW, this is Ubuntu 18.04.
In order to complete the sequence
./bootstrap.sh
./configure
make
successfully, I first had to edit makefile.in so that "-lm" appeared after, not before, "$<" in the compile command lines. Otherwise, math library symbols were not found because the math library was not in line to be searched after the source file. FWIW, this is Ubuntu 18.04.
A corrective patch:$(patsubst %.c,%.o,$ (gentab_targets))
diff --git a/makefile.in b/makefile.in
index 2b8320c..15c3e8f 100644
--- a/makefile.in
+++ b/makefile.in
@@ -180,7 +180,7 @@ gentab_objects =
result is a program that generates a source file to be
built for the target system.
$(gentab_programs) : % : %.c ./include/liquidfpm.h
Run the natively-built program to generate the source
file. This file is to be built for the target system.
@@ -312,7 +312,7 @@ install:
@echo " Please report bugs to $(BUGREPORT)"
@echo "---------------------------------------------------------"
@echo ""
TARGET : uninstall - uninstalls the libraries and header files in the host system
@@ -373,7 +373,7 @@$(benchmark_include): $ (benchmarkgen_prog) $(benchmark_headers)$(benchmark_headers) > $ @
./$(benchmarkgen_prog)
bench: $(benchmark_prog)$(autotest_include): $ (autotestgen_prog) $(autotest_headers)$(autotest_headers) > $ @
./$<
@@ -401,7 +401,7 @@
./$(autotestgen_prog)
check: $(autotest_prog)
./$<
The text was updated successfully, but these errors were encountered: