kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #00070
Linux libraries
-
To:
kicad-devel@xxxxxxxxxxxxxxx
-
From:
Mitch Bradley <wmb@...>
-
Date:
Thu, 30 Mar 2006 07:06:21 -1000
-
User-agent:
Thunderbird 1.5 (Windows/20051201)
I just tried to build kicad 2006-03-28 on Debian unstable with wxwidgets
2.6.2 using "make -f makefile.gtk".
Some of the programs built, but others, including pcbnew and cvpcb,
failed to link because of several undefined references to methods in the
wxSocket*, wxIPV4Address*, and wxHtmlHelp classes.
I solved the problem by replacing, in libs.linux:
WXSYSLIB_WITH_GL= `wx-config --libs gl`
with
WXSYSLIB_WITH_GL= `wx-config --libs` `wx-config --libs gl`
Apparently saying "--libs gl" restricts the list of libraries rather
than extending it.
Follow ups