in reply to XML::LibXML setup of library paths
The problem is that you are on a Macintosh. Your version of MacOS X ships with libxml2 20800 and finds that first when loading libxml2, likely because it is already loaded somewhere in another process. Your failures here are due to the compiler finding version 20904, but the dynamic loader supplying 20800.
There should be some way to get the system to actually load the newer version of libxml2 from a "keg" but that is your problem here — the compiler is using the new version, but the dynamic loader is using the older version that presumably Apple shipped.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: XML::LibXML setup of library paths
by Anonymous Monk on Nov 13, 2019 at 11:38 UTC | |
|
Re^2: XML::LibXML setup of library paths
by Anonymous Monk on Nov 14, 2019 at 01:46 UTC | |
by jcb (Parson) on Nov 14, 2019 at 23:24 UTC | |
|
Re^2: XML::LibXML setup of library paths
by Anonymous Monk on Nov 13, 2019 at 14:23 UTC | |
by Anonymous Monk on Nov 13, 2019 at 20:19 UTC | |
by Your Mother (Archbishop) on Nov 13, 2019 at 21:23 UTC |