You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We'll get this fixed properly longer term, but instructions to build for 64 bit Linux are found in the readme.txt file located in the analyzer libs folder. I suspect linking libAnalyzer64.so without renaming it first might prevent the compiled library from finding the libAnalyzer.so provided with the Logic software, but I haven't tested that.
On a 64-bit Linux machine, g++ rejects libAnalyzer.so and doesn't find libAnalyzer64.so.
Quick fix: change line 43 of build_analyzer.py from
link_dependencies = [ "-lAnalyzer" ] #refers to libAnalyzer.dylib or libAnalyzer.so
to
link_dependencies = [ "-lAnalyzer64" ] #refers to libAnalyzer.dylib or libAnalyzer.so
The text was updated successfully, but these errors were encountered: