Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
|
![]() |
|
Thread Tools | Search this Thread | Display Modes |
![]() |
#1 | Link |
Registered User
Join Date: Jun 2007
Posts: 401
|
VapourSynth Installer, Applications, & Plugins for macOS (Intel)
The applications, installer, and plugins are compiled for macOS 10.12 or newer. To install plugins simply copy them to the autoloading path, which can be found through the shortcut on the desktop.
NOTE: Gatekeeper will require you to approve the installer and each plugin you add individually by following Apple's instructions for opening an app that hasn't been notarized or is from an unidentified developer. VapourSynth Installer: Installer Downloads Installers include D2V Source, FFMS2, & LSMASHSource. INFO: To access the python environment for the VapourSynth.framework just run vspython in terminal. DEPENDENCY: For ImageMagick to work you will need to install XQuartz. IMPORTANT: The installer includes it's own copy of python separate from the system, to access that environment use the commands vspython3 or vspip3 in terminal. Alternative VapourSynth Install Method (Brew): IMPORTANT: Brew users will need to create and set the autoload folder prior to installing VapourSynth! Simply run the following commands: Code:
mkdir -p /usr/local/lib/vapoursynth mkdir -p "$HOME/Library/Application Support/VapourSynth" touch "$HOME/Library/Application Support/VapourSynth/vapoursynth.conf" echo UserPluginDir=/usr/local/lib/vapoursynth >> "$HOME/Library/Application Support/VapourSynth/vapoursynth.conf" echo SystemPluginDir=/usr/local/lib/vapoursynth >> "$HOME/Library/Application Support/VapourSynth/vapoursynth.conf" Code:
mkdir $HOME/Desktop/VapourSynth ln -s /usr/local/lib/vapoursynth $HOME/Desktop/VapourSynth/Plugins ln -s /usr/local/lib/python3.9/site-packages $HOME/Desktop/VapourSynth/Scripts Code:
brew install vapoursynth Applications: D2V Witch v5 VapourSynth Editor r19 Mod 1 VapourSynth Editor r19 Mod 5.1 (Requires macOS 10.13+) Plugins: Plugin Downloads (Mirror) Available Plugins: AdaptiveGrain AddGrain Anime4KCPP AreaResize (**) ASharp AutoCrop Average aWarpSharp2 BestAudioSource Bifrost Bilateral BM3D Bwdif CAS (Requires macOS 10.14+) CNR2 ColorBars CombMask ContinuityFixer CTMF D2VSource Damb DCTFilter Deblock DeblockPP7 DeCross Dedot DegrainMedian DeLogo DePan (Source) Descale DFTTest (r7+ Requires macOS 10.14+) DotKill DPID EdgeFixer EEDI2 EEDI3 EEDI3m FFMS2 FFT3DFilter FFTSpectrum FieldHint FillBorders Fix Telecined Fades Flash3kyuu Deband Fluxsmooth Focus Format Conversion GradCurve Histogram HQDN3D ImageMagick IT (Requires macOS 10.15+) JincResize (**) KNLMeansCL LGhost LSMASHSource MiniDeen MinSharp MotionMask MSmoosh MVTools NNEDI3 NNEDI3CL NoiseGenerator (**) OCR Placebo (Requires macOS 10.15+)(*) QRCodeSource RawSource ReadMpls RemoveDirt RemoveGrain RemapFrames RemoveGrain Single Precision Retinex SangNom SangNomMod SceneChange SCrawl SCXvid SmoothUV SRMD (Requires macOS 10.15+)(*) SSIQ SurfaceBlur TBilateral TCanny TComb TDeintMod TempLinearApproximate TemporalSoften TemporalSoften2 TimeCube TIVTC TNLMeans ToneMap TTempSmooth VagueDenoiser vcmod vcmove vctrans VFR to CFR VideoScope VIVTC VMAF W3FDIF Waifu2x NCNN Vulkan (Requires macOS 10.15+)(*) Waifu2x-w2xc Warpsharp Single Precision (Requires macOS 10.14+) Yadifmod ZNEDI3 (*) Requires Vulkan SDK to be installed. (**) Crashes VapourSynth Editor when preview window is closed or refreshed. Source Code for Applications, Installer, & Plugins: Source Downloads (Mirror) Last edited by l33tmeatwad; 12th April 2022 at 03:00. Reason: Updated Information. |
![]() |
![]() |
![]() |
#3 | Link |
Registered User
Join Date: Jun 2007
Posts: 401
|
Setting Up Tools
Note: It is recommended that you either use macOS 10.12 or use the '-mmacosx-version-min=10.12' in "export CPPFLAGS=' for better distribution compatibility. VapourSynth and other tools will not work on 10.11 or older. Download Command Line Tools for Xcode 9.2 and install it. The installer is built using the software Packages. IMPORTANT: Some files may not download correctly with curl and will need to be downloaded manually through your web browser. Create a working directory: Code:
cd $HOME mkdir .installs cd .installs Setup Autoconf Code:
cd $HOME/.installs curl https://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.gz -o autoconf-2.71.tar.gz tar -xzf autoconf-71.tar.gz cd autoconf-2.71 ./configure make sudo make install Setup Automake Code:
cd $HOME/.installs curl https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.gz -o automake-1.16.5.tar.gz tar -xzf automake-1.16.5.tar.gz cd automake-1.16.5 ./configure make sudo make install Setup Libtool Code:
cd $HOME/.installs curl http://mirrors.kernel.org/gnu/libtool/libtool-2.4.7.tar.gz -o libtool-2.4.7.tar.gz tar -xzf libtool-2.4.7.tar.gz cd libtool-2.4.7 ./configure make sudo make install Setup pkg-config Code:
cd $HOME/.installs curl https://pkg-config.freedesktop.org/releases/pkg-config-0.29.2.tar.gz -o pkg-config-0.29.2.tar.gz tar -xzf pkg-config-0.29.2.tar.gz cd pkg-config-0.29.2 ./configure --with-internal-glib make sudo make install Setup CMake Code:
cd $HOME/.installs git clone https://gitlab.kitware.com/cmake/cmake.git cd cmake git checkout v3.22.3 ./configure make sudo make install Setup ragel Code:
cd $HOME/.installs curl -L http://www.colm.net/files/ragel/ragel-6.10.tar.gz -o ragel-6.10.tar.gz tar -xzf ragel-6.10.tar.gz cd ragel-6.10 ./configure make sudo make install Setup NASM Code:
cd $HOME/.installs git clone https://github.com/netwide-assembler/nasm cd nasm git checkout nasm-2.15.05 ./autogen.sh ./configure make sudo make install Setup YASM Code:
cd $HOME/.installs curl http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz -o yasm-1.3.0.tar.gz tar -xzf yasm-1.3.0.tar.gz cd yasm-1.3.0 ./configure make sudo make install Setup OpenSSL Code:
cd $HOME/.installs git clone git://git.openssl.org/openssl.git cd openssl git checkout OpenSSL_1_1_1n ./config --prefix=/Library/Frameworks/VapourSynth.framework -no-shared make sudo make install Setup XZ Utils Code:
cd $HOME/.installs curl -L https://tukaani.org/xz/xz-5.2.5.tar.gz -o xz-5.2.5.tar.gz tar -xzf xz-5.2.5.tar.gz cd xz-5.2.5 ./configure --prefix=/Library/Frameworks/VapourSynth.framework -disable-shared make sudo make install Setup zlib Code:
cd $HOME/.installs git clone https://github.com/madler/zlib cd zlib git checkout v1.2.11 ./configure --prefix=/Library/Frameworks/VapourSynth.framework --static make sudo make install Setting up Python Code:
cd $HOME/.installs curl https://www.python.org/ftp/python/3.10.4/Python-3.10.4.tgz -o Python-3.10.4.tgz tar xvfj Python-3.10.4.tgz cd Python-3.10.4 export LDFLAGS='-L/Library/Frameworks/VapourSynth.framework/lib' export CPPFLAGS='-I/Library/Frameworks/VapourSynth.framework/include' export PKG_CONFIG_PATH=/Library/Frameworks/VapourSynth.framework/lib/pkgconfig ./configure --prefix=/Library/Frameworks/VapourSynth.framework --enable-shared make sudo make install Make Python Links Code:
sudo ln -s /Library/Frameworks/VapourSynth.framework/bin/pip3.10 /usr/local/bin/vspip3 sudo ln -s /Library/Frameworks/VapourSynth.framework/bin/python3.10 /usr/local/bin/vspython Setup Cython Code:
sudo vspip3 install cython sudo ln -s /Library/Frameworks/VapourSynth.framework/bin/cython /usr/local/bin/cython Setup NumPy Code:
sudo vspip3 install numpy Setup LibJPEG Turbo Code:
cd $HOME/.installs git clone https://github.com/libjpeg-turbo/libjpeg-turbo cd libjpeg-turbo git checkout 2.1.3 cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=/Library/Frameworks/VapourSynth.framework/ -DENABLE_STATIC=ON -DENABLE_SHARED=OFF . make sudo make install Setup libpng Code:
cd $HOME/.installs curl -L https://download.sourceforge.net/libpng/libpng-1.6.37.tar.gz -o libpng-1.6.37.tar.gz tar xvzf libpng-1.6.37.tar.gz cd libpng-1.6.37 ./configure --prefix=/Library/Frameworks/VapourSynth.framework --enable-shared=no make sudo make install Setup libtiff Code:
cd $HOME/.installs git clone https://gitlab.com/libtiff/libtiff cd libtiff git checkout v4.3.0 cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=/Library/Frameworks/VapourSynth.framework/ -DBUILD_SHARED_LIBS=OFF -Dzstd=OFF -Dlzma=OFF . make sudo make install Setup ImageMagick Code:
cd $HOME/.installs unset CPPFLAGS export CPPFLAGS='-I/Library/Frameworks/VapourSynth.framework/include' git clone https://github.com/ImageMagick/ImageMagick cd ImageMagick git checkout 7.1.0-29 ./configure --prefix=/Library/Frameworks/VapourSynth.framework --without-xml --disable-shared make sudo make install Setup FreeType Code:
cd $HOME/.installs unset CPPFLAGS export CPPFLAGS='-I/Library/Frameworks/VapourSynth.framework/include' curl -L http://download.savannah.gnu.org/releases/freetype/freetype-2.12.0.tar.gz -o freetype-2.12.0.tar.gz tar xvzf freetype-2.12.0.tar.gz cd freetype-2.12.0 ./configure --prefix=/Library/Frameworks/VapourSynth.framework --disable-shared make sudo make install Setup Harfbuzz Code:
cd $HOME/.installs unset CPPFLAGS export CPPFLAGS='-I/Library/Frameworks/VapourSynth.framework/include' git clone https://github.com/harfbuzz/harfbuzz cd harfbuzz git checkout 4.2.0 ./autogen.sh ./configure --prefix=/Library/Frameworks/VapourSynth.framework --disable-shared make sudo make install Setup FriBidi Code:
cd $HOME/.installs unset CPPFLAGS export CPPFLAGS='-I/Library/Frameworks/VapourSynth.framework/include' git clone https://github.com/fribidi/fribidi cd fribidi git checkout v1.0.11 ./autogen.sh ./configure --prefix=/Library/Frameworks/VapourSynth.framework --disable-shared make sudo make install Setup LIBASS Code:
cd $HOME/.installs unset CPPFLAGS export CPPFLAGS='-I/Library/Frameworks/VapourSynth.framework/include/freetype2 -I/Library/Frameworks/VapourSynth.framework/include/harfbuzz' git clone https://github.com/libass/libass cd libass git checkout 0.15.2 ./autogen.sh ./configure --prefix=/Library/Frameworks/VapourSynth.framework --disable-shared make sudo make install Setup Leptonica Code:
cd $HOME/.installs git clone https://github.com/danbloomberg/leptonica cd leptonica git checkout 1.82.0 export LDFLAGS='-L/Library/Frameworks/VapourSynth.framework/lib' CPPFLAGS='-I/Library/Frameworks/VapourSynth.framework/include' ./autogen.sh ./configure --prefix=/Library/Frameworks/VapourSynth.framework --disable-shared make sudo make install Setup Tesseract Code:
cd $HOME/.installs unset CPPFLAGS export CPPFLAGS='-I/Library/Frameworks/VapourSynth.framework/include/leptonica' export PKG_CONFIG_PATH=/Library/Frameworks/VapourSynth.framework/lib/pkgconfig git clone https://github.com/tesseract-ocr/tesseract cd tesseract git checkout 4.1.3 ./autogen.sh ./configure --prefix=/Library/Frameworks/VapourSynth.framework make sudo make install Setup L-SMASH Code:
cd $HOME/.installs git clone https://github.com/l-smash/l-smash cd l-smash git checkout v2.14.5 ./autogen.sh ./configure --prefix=/Library/Frameworks/VapourSynth.framework -disable-shared make sudo make install Setup FFmpeg Code:
cd $HOME/.installs git clone https://github.com/ffmpeg/ffmpeg cd ffmpeg git checkout n4.4.1 ./configure --prefix=/Library/Frameworks/VapourSynth.framework --enable-gpl --enable-version3 --enable-shared --disable-static --disable-encoders --disable-programs \ --disable-filters --disable-doc --disable-avdevice --disable-avfilter --disable-network --disable-postproc make sudo make install Setup ZIMG Code:
cd $HOME/.installs git clone https://github.com/sekrit-twc/zimg cd zimg git checkout release-3.0.3 ./autogen.sh ./configure --prefix=/Library/Frameworks/VapourSynth.framework make sudo make install Setup VapourSynth Code:
cd $HOME/.installs export PYTHON=/Library/Frameworks/VapourSynth.framework/bin/python3 git clone https://github.com/vapoursynth/vapoursynth cd vapoursynth git checkout R58 ./autogen.sh ./configure --prefix=/Library/Frameworks/VapourSynth.framework make sudo make install sudo mkdir /Library/Frameworks/VapourSynth.framework/lib/vapoursynth Code:
sudo ln -s /Library/Frameworks/VapourSynth.framework/lib/libvapoursynth.dylib /usr/local/lib/libvapoursynth.dylib sudo ln -s /Library/Frameworks/VapourSynth.framework/lib/libvapoursynth-script.dylib /usr/local/lib/libvapoursynth-script.dylib sudo ln -s /Library/Frameworks/VapourSynth.framework/lib/libvapoursynth-script.0.dylib /Library/Frameworks/VapourSynth.framework/lib/libvapoursynth-script.0.dylib sudo ln -s /Library/Frameworks/VapourSynth.framework/lib/vapoursynth /usr/local/lib/vapoursynth sudo ln -s /Library/Frameworks/VapourSynth.framework/lib/pkgconfig/vapoursynth.pc /usr/local/lib/pkgconfig/vapoursynth.pc sudo ln -s /Library/Frameworks/VapourSynth.framework/lib/pkgconfig/vapoursynth-script.pc /usr/local/lib/pkgconfig/vapoursynth-script.pc sudo ln -s /Library/Frameworks/VapourSynth.framework/bin/vspipe /usr/local/bin/vspipe sudo ln -s /Library/Frameworks/VapourSynth.framework/include/vapoursynth /usr/local/include/vapoursynth Code:
sudo mkdir $HOME/Desktop/VapourSynth sudo ln -s /Library/Frameworks/VapourSynth.framework/bin "$HOME/Desktop/VapourSynth/Add Executables" sudo ln -s /Library/Frameworks/VapourSynth.framework/lib "$HOME/Desktop/VapourSynth/Add Libraries" sudo ln -s /Library/Frameworks/VapourSynth.framework/lib/vapoursynth "$HOME/Desktop/VapourSynth/Add Plugins" sudo ln -s /Library/Frameworks/VapourSynth.framework/lib/python3.10/site-packages "$HOME/Desktop/VapourSynth/Add Scripts" Details for Plugins Most plugins will be compiled similarly to the dependencies above, here's an example using FFMS2: Code:
git clone https://github.com/FFMS/ffms2 cd ffms2 git checkout 2.23 export LDFLAGS='-L/Library/Frameworks/VapourSynth.framework/lib' export CPPFLAGS='-I/Library/Frameworks/VapourSynth.framework/include' export PKG_CONFIG_PATH=/Library/Frameworks/VapourSynth.framework/lib/pkgconfig ./autogen.sh ./configure --prefix=/Library/Frameworks/VapourSynth.Framework make sudo make install Code:
otool -L libffms2.4.dylib Code:
/Library/Frameworks/VapourSynth.framework/libffms2.4.dylib (compatibility version 5.0.0, current version 5.0.0) /Library/Frameworks/VapourSynth.framework/lib/libavformat.58.dylib (compatibility version 58.0.0, current version 58.12.100) /Library/Frameworks/VapourSynth.framework/lib/libavcodec.58.dylib (compatibility version 58.0.0, current version 58.18.100) /Library/Frameworks/VapourSynth.framework/lib/libswscale.5.dylib (compatibility version 5.0.0, current version 5.1.100) /Library/Frameworks/VapourSynth.framework/lib/libavutil.56.dylib (compatibility version 56.0.0, current version 56.14.100) /Library/Frameworks/VapourSynth.framework/lib/libavresample.4.dylib (compatibility version 4.0.0, current version 4.0.0) /Library/Frameworks/VapourSynth.framework/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.11) /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 120.1.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1226.10.1) Code:
sudo install_name_tool -id "libffms2.4.dylib" libffms2.4.dylib Additionally, the location of dependencies can be changed to be relative to the location of the actual plugin. For example, ffms2 looks for it's dependency zlib in /Library/Frameworks/VapourSynth.framework/lib, that location can be change to look for it one directory above where libffms2.4.dylib is located (assuming you place libffms2.4.dylib in the VapourSynth autoloading folder) by using a variable called @loader_path. Here is an example of how that would work: Code:
sudo install_name_tool -change /Library/Frameworks/VapourSynth.framework/lib/libz.1.dylib @loader_path/../libz.1.dylib libffms2.4.dylib Last edited by l33tmeatwad; 7th April 2022 at 19:13. Reason: Updated info. |
![]() |
![]() |
![]() |
#4 | Link |
N00b
Join Date: Aug 2011
Location: Loli Island
Posts: 9
|
SCXvid was removed from mediafire ^^
EDIT: Another question, if I had to compile a few plugins by myself which are not present in the list, what params should I use? Since I get an error about not finding vapoursynth.h. Last edited by Mad_Hatter; 13th June 2018 at 10:49. |
![]() |
![]() |
![]() |
#6 | Link | |
Registered User
Join Date: Jun 2007
Posts: 401
|
FFT3DFilter uses C++17 code and EEDI3m would not compile correctly with the macOS 10.11 compiler so I had to use GCC 8.1.0 for that as well.
Quote:
Last edited by l33tmeatwad; 28th June 2018 at 16:45. Reason: Updated information. |
|
![]() |
![]() |
![]() |
#7 | Link |
Registered User
Join Date: Oct 2001
Location: Germany
Posts: 6,977
|
Can't test before Sunday, just to get it straight what needs to be done to get a working Vapoursynth with all the plugins:
a. Download http://www.mediafire.com/folder/8xulo6r12tqbv which contains the installer and D2V Source, FFMS2 and LSMASHSource. b. Go to https://www.mediafire.com/folder/wvdlnjapm1vvw and download the latest 7z from each folder, extract the dylib file and place it into the plugins folder (/usr/local/lib/vapoursynth) Is that all or do I have to do anything else? Are the dependencies compiled statically into the dylib files? Do the dependencies come with the installer or is there something else to do? @Hybrid-users: no panic I'll bundle the plugins with the Hybrid release, so no hours downloading and extracting the files. @l33tmeatwad: how about adding the .dylib files to a git repository on github or similar, so getting the latest versions could be done with a 'git clone --depth=1 <remote_repo_url>' ? (always having to check all the folders by hand for updates and extracting the 7z files seem bothersome ![]() Cu Selur Ps.: @l33tmeatwad: any change of an uninstaller for the base installer? Something that would remove everything the installer added to the system? Last edited by Selur; 13th June 2018 at 18:11. |
![]() |
![]() |
![]() |
#8 | Link | ||||
Registered User
Join Date: Jun 2007
Posts: 401
|
Quote:
Quote:
Quote:
Quote:
Code:
sudo rm -rf /Library/Frameworks/VapourSynth.framework sudo rm -rf /usr/local/bin/ffmsindex sudo rm -rf /usr/local/bin/vspipe sudo rm -rf /usr/local/bin/vspython sudo rm -rf /usr/local/include/vapoursynth sudo rm -rf /usr/local/lib/libvapoursynth-script.dylib sudo rm -rf /usr/local/lib/libvapoursynth.dylib |
||||
![]() |
![]() |
![]() |
#11 | Link |
Registered User
Join Date: Nov 2004
Location: Poland
Posts: 2,830
|
Traceback (most recent call last):
File "src/cython/vapoursynth.pyx", line 1847, in vapoursynth.vpy_evaluateScript File "", line 9, in File "/Library/Frameworks/VapourSynth.framework/lib/python3.6/site-packages/havsfunc.py", line 1222, in QTGMC dnWindow = core.fft3dfilter.FFT3DFilter(noiseWindow, sigma=Sigma, planes=CNplanes, bt=noiseTD, ncpu=FftThreads) File "src/cython/vapoursynth.pyx", line 1561, in vapoursynth._CoreProxy.__getattr__ File "src/cython/vapoursynth.pyx", line 1416, in vapoursynth.Core.__getattr__ AttributeError: No attribute with the name fft3dfilter exists. Did you mistype a plugin namespace? even if libfft3dfilter.dylib is in plugins folder and gcc 8.1.0 is already installed and up-to-date. Had issues with mvtools (mv.Super) also but installing with brew and overwriting library fixed it. Last edited by kolak; 15th June 2018 at 16:16. |
![]() |
![]() |
![]() |
#12 | Link | |
Registered User
Join Date: Jun 2007
Posts: 401
|
Quote:
Side note, if you are already using brew to install some things, I would recommend using it to install vapoursynth as well, this will help to avoid any issues of finding dependencies as they will all be in a single location. The installer is intended to be used if you do not wish to install xcode & brew and creates it's own self contained environment to not conflict with anything already installed. This is to maintain it working and not break things if other updates are done (like if you are using brew and update FFmpeg beyond the version FFMS2 or LSMASHSource was compiled to be compatible with). This means that the location /Library/Frameworks/VapourSynth.framework will need it's own copy of each dependency, or you can create links to them. Last edited by l33tmeatwad; 15th June 2018 at 16:43. |
|
![]() |
![]() |
![]() |
#13 | Link |
Registered User
Join Date: Nov 2004
Location: Poland
Posts: 2,830
|
Found LibstdC++ library (libstdc++.dylib) which was a link pointing to actual library. Made same link in Vapoursynth/Lib but still no luck (so VS/Lib/libstdc++.dylib is definitely pointing to actual library).
Well- I'm bit lost with it, so some things are done through brew, some not (or even compiled blindly by me). It's most likely mess. Issue with mv.Super was I think related to some by in mvtools which are in your package. mvtools itself worked I assume, just some part if it (mv.Super) didn't o maybe this is just my understanding. By installing it with brew and then replacing your library all got fixed. Last edited by kolak; 15th June 2018 at 16:51. |
![]() |
![]() |
![]() |
#14 | Link | |
Registered User
Join Date: Jun 2007
Posts: 401
|
Quote:
|
|
![]() |
![]() |
![]() |
#15 | Link |
Registered User
Join Date: Nov 2004
Location: Poland
Posts: 2,830
|
Code:
import vapoursynth as vs core = vs.get_core() import havsfunc as haf clip = core.ffms2.Source(source="") clip = core.resize.Bicubic(clip=clip,format=vs.YUV422P8) deint = haf.QTGMC(clip, Preset='Fast', TFF=True) deint.set_output() If you add grain retention: Code:
deint = haf.QTGMC(clip, Preset='Fast', TFF=True, EZKeepGrain=1) Last edited by kolak; 15th June 2018 at 16:59. |
![]() |
![]() |
![]() |
#16 | Link | |
Registered User
Join Date: Jun 2007
Posts: 401
|
Quote:
Edit: I just noticed I didn't list MVTools as needing FFTW3, it does require that dependency. Last edited by l33tmeatwad; 15th June 2018 at 17:11. Reason: Updated information. |
|
![]() |
![]() |
![]() |
#17 | Link |
Registered User
Join Date: Nov 2004
Location: Poland
Posts: 2,830
|
Yes, it was probably failing due to missing dependencies (due to mess on my system).
Hm... still have to fight FFT3DFilter problem. I did uninstall vs with brew and used installer, so it should work. Does FFT3DFilter needs some other library (other than. LibstdC++)? What about FFTW3 itself (I think I actually tried copying all of its libraries into VS/Lib folder)? |
![]() |
![]() |
![]() |
#18 | Link | ||
Registered User
Join Date: Jun 2007
Posts: 401
|
Quote:
Quote:
Code:
otool -L libfft3dfilter.dylib libfft3dfilter.dylib: libfft3dfilter.dylib (compatibility version 0.0.0, current version 0.0.0) @loader_path/../libfftw3f_threads.3.dylib (compatibility version 9.0.0, current version 9.8.0) @loader_path/../libfftw3f.3.dylib (compatibility version 9.0.0, current version 9.8.0) @loader_path/../libstdc++.6.dylib (compatibility version 7.0.0, current version 7.25.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1226.10.1) @loader_path/../libgcc_s.1.dylib (compatibility version 1.0.0, current version 1.0.0) Last edited by l33tmeatwad; 15th June 2018 at 18:10. |
||
![]() |
![]() |
![]() |
Tags |
meatwadismagical, meatwadthegreat |
Thread Tools | Search this Thread |
Display Modes | |
|
|