Re: gnucap development snapshot-2013-04-23 installation
Rishabh Yadav <[email protected]>
| Newsgroups | gmane.comp.gnu.gnucap.devel |
|---|---|
| Message-ID | <CAHkH5nd-V80EFKGd5SE+BXswYTKPXgrxnYR_mQguJxdoND04CQ@mail.gmail.com> |
There is a small bug in the gnucap-2013-04-23 I figured it out when I was getting '...undefined reference to readline...' error.The error popped beacuse test_readline.cc was unable to link to readline library. Actually in the /lib/configure file(Line 31) it is like: *g++ -lreadline -ltermcap test_readline.cc* and when I referenced the linker library after referrring the source code it worked.I mean when I changed the above line of code to: *g++ test_readline.cc -lreadline -ltermcap* test_readline.cc compiled successfuilly.