Asd-g / avslibplacebo

AviSynth+ libplacebo.
GNU General Public License v3.0
25 stars 2 forks source link

Help for compilation? #9

Closed erazortt closed 11 months ago

erazortt commented 11 months ago

Hey, I'm having quite some hard time compiling this. Perhaps you could help me out. I want to compare your computation with DoViBaker and for that I would want to have a debug enabled version. How does you compiling procedure look like for the whole thing (including the dependencies)?

Asd-g commented 11 months ago

Hi. You need clang-cl/icc for compiling libplacebo. I use this to add clang-cl support for Visual Studio and also the latest release from here. But clang-cl shipped with Visual Studio is probably ok. Installed Vulkan SDK from here. Clone this repository with the sub modules (git clone --recurse-submodules ....). Following the instructions from here by replacing release with debug for the steps and then using the solution from here (Debug version) should work. You may want change the path to the Vulkan include and lib location (in Visual Studio) in case the Vulkan folder and avslibplacebo aren't next to each other.

erazortt commented 11 months ago

Thanks!