-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
question: required dependecies and how to build #1
Comments
Have you cloned my libxml-win-build repository along side libxslt-win-build?
And of course you need to build that too.
Get Outlook for Android<https://aka.ms/ghei36>
…________________________________
From: Andre Bossert <[email protected]>
Sent: Tuesday, July 10, 2018 8:36:34 PM
To: kiyolee/libxslt-win-build
Cc: Subscribed
Subject: [kiyolee/libxslt-win-build] question: required dependecies an how to build (#1)
I've tried to build it with VS 2017, but libxml header files are not missed. Does it meen libxml must be added as source and imported to the solution?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub<#1>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AA-An3-QBNJZyge3C3INLpfEVmdCkw74ks5uFIOygaJpZM4VJKgt>.
|
Today i had some time to check it out and it works! Thanks! my steps:
copied xsltproc-static.exe to own directory, execution with --version prints:
copied xsltproc.exe to own directory, execution with --version errored, because of missing DLLs --> copied libexslt.dll, libxml2.dll and libxslt.dll to the exe folder --> OK:
I will try the version with some xslt files at work soon... |
You aren't supposed to require copying static libraries around for building. Let me double check.
You do need to copy dll around though to run. That's about installation which I don't handle in my projects.
Get Outlook for Android<https://aka.ms/ghei36>
…________________________________
From: Andre Bossert <[email protected]>
Sent: Tuesday, September 11, 2018 6:00:27 AM
To: kiyolee/libxslt-win-build
Cc: Kelvin Lee; Comment
Subject: Re: [kiyolee/libxslt-win-build] question: required dependecies and how to build (#1)
Today i had some time to check it out and it works! Thanks!
my steps:
* cloned 4 repos:
git clone https://github.com/kiyolee/libiconv-win-build.git
git clone https://github.com/kiyolee/zlib-win-build.git
git clone https://github.com/kiyolee/libxml2-win-build.git
git clone https://github.com/kiyolee/libxslt-win-build.git
* used solutions for build-VS2017 and Release + x64
* build all projects of libiconv --> OK
* build all projects of zlib --> OK
* build all projects of libxml2 --> failed, becase of missing libiconv-static.lib and tlib-static.lib --> copied them to the folder x64\Release\ of libxml2 --> OK
* build all projects of libxslt --> OK
copied xsltproc-static.exe to own directory, execution with --version prints:
xsltproc>xsltproc-static.exe --version
Using libxml 20908, libxslt 10132 and libexslt 817
xsltproc was compiled against libxml 20908, libxslt 10132 and libexslt 817
libxslt 10132 was compiled against libxml 20908
libexslt 817 was compiled against libxml 20908
copied xsltproc.exe to own directory, execution with --version errored, because of missing DLLs --> copied libexslt.dll, libxml2.dll and libxslt.dll to the exe folder --> OK:
xsltproc>xsltproc.exe --version
Using libxml 20908, libxslt 10132 and libexslt 817
xsltproc was compiled against libxml 20908, libxslt 10132 and libexslt 817
libxslt 10132 was compiled against libxml 20908
libexslt 817 was compiled against libxml 20908
I will try the version with some xslt files at work soon...
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#1 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AA-An6gSkCkbQPI6t_Scv8dSi__qFt_Pks5uZsTbgaJpZM4VJKgt>.
|
I've tried to build it with VS 2017, but libxml header files are missed. Does it mean libxml must be added as source and imported to the solution?
The text was updated successfully, but these errors were encountered: