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
When I run ./configure ABI=32 --enable-optimized
It occurs that:
.....(omission)
checking lex library... -lfl
checking whether yytext is a pointer... yes
building for 32-bit architecture ONLY!
checking for pow in -lm... no
************************
m library not found
add its path to LDFLAGS
see ./configure --help
************************
It said that m library not found.
I used command whereis to check the location:
root@loccs-ubuntuvm:~/workspace/fenc-0.2.0# whereis libm
libm: /usr/lib/libm.so /usr/lib/libm.a
Then I set LDFLAGS to add the lib path:
root@loccs-ubuntuvm:~/workspace/fenc-0.2.0# ./configure ABI=32
--enable-optimized LDFLAGS=-L"/usr/lib"
But it still did not work, the same error appeared!
My OS is ubuntu10.10
Source code I used is fenc-0.2.0
Can anyone help? Thank you!
Original issue reported on code.google.com by Shining....@gmail.com on 5 Sep 2012 at 1:31
The text was updated successfully, but these errors were encountered:
The following worked for me:-
./configure LDFLAGS=-L"/usr/lib/x86_64-linux-gnu/" --enable-optimized
For some reason (which I didn't bother to investigate) it didn't work if I
included the API argument
Original comment by ali.saj...@gmail.com on 4 Oct 2013 at 2:06
Original issue reported on code.google.com by
Shining....@gmail.com
on 5 Sep 2012 at 1:31The text was updated successfully, but these errors were encountered: