david135 / ypsilon

Automatically exported from code.google.com/p/ypsilon
Other
0 stars 0 forks source link

Makefile for Linux,etc. ypsilon-0.9.6-update3 bug #151

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. compiling/linking with latest libc6
2. link step produces errors
3. file.cpp:(.text+0x461): undefined reference to `dlerror' etc.

What is the expected output? What do you see instead?
no error

What version of the product are you using? On what operating system?
ypsilon-0.9.6-update3  on linuxmint 12

Please provide any additional information below.
bug easy to correct :

line 129 of Makefile should be :
    $(CXX) -pthread $(LDFLAGS) -o $@ $^  $(LDLIBS)

(buggy) original was :  

    $(CXX) -pthread $(LDFLAGS) $(LDLIBS) -o $@ $^

Remark : with former versions of libc6, no linking problems occured

Original issue reported on code.google.com by ete41...@gmail.com on 18 Feb 2012 at 4:34