Opened 7 years ago
Closed 7 years ago
#617 closed defect (invalid)
Typo in shared library names: it installs libemon.so
| Reported by: | yurivict | Owned by: | Alpar Juttner |
|---|---|---|---|
| Priority: | major | Milestone: | LEMON 1.4 release |
| Component: | core | Version: | hg main |
| Keywords: | Cc: | ||
| Revision id: |
Description
1.3.1 installs:
lib/libemon.so lib/libemon.so.1.3.1
Change History (2)
comment:1 Changed 7 years ago by
comment:2 Changed 7 years ago by
| Resolution: | → invalid |
|---|---|
| Status: | new → closed |
Note: See
TracTickets for help on using
tickets.


It is intentional and actually follows a funny old habit. (See e.g.
lex). The library is given to the compiler using the-lswitch, thus if you want to link your code to LEMON, you will writegcc mycode.cc -lemon(Instead of
-llemon)