diff options
| -rw-r--r-- | docs/about/open-source.md | 8 | ||||
| -rw-r--r-- | scripts/install_api.py | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/about/open-source.md b/docs/about/open-source.md index 114d5b53..e9ff6280 100644 --- a/docs/about/open-source.md +++ b/docs/about/open-source.md @@ -43,12 +43,12 @@ The previous tools are used in the generation of our documentation, but are not ## Building Qt -Binary Ninja uses [Qt 5.12] under an LGPLv3 license which requires that we host the original sources used to build Qt for our application along with instructions on how that source may be re-built and can replace the version of Qt shipped with Binary Ninja. +Binary Ninja uses [Qt 5.14] under an LGPLv3 license which requires that we host the original sources used to build Qt for our application along with instructions on how that source may be re-built and can replace the version of Qt shipped with Binary Ninja. Please note that we offer no support for running Binary Ninja with modified Qt libraries. 1. Follow the installation requirements on the [Building Qt 5 from Git] page. -2. Download the Qt 5.12.3 [tarball] from binary.ninja. (Note this is an unmodified 5.12 identical to that available from Qt's source control, but must be hosted locally according to the [Qt 5.12] terms.) +2. Download the Qt 5.14.0 [tarball] from binary.ninja. (Note this is an unmodified 5.14 identical to that available from Qt's source control, but must be hosted locally according to the [Qt 5.14] terms.) 3. Next, build QT using the aforementioned instructions. 4. On OS X, you will need to disable the code-signing signature since it would otherwise prevent changes to binaries or shared libraries. We recommend a tool such as [unsign]. 5. Finally, replace the built libraries: @@ -57,7 +57,7 @@ Please note that we offer no support for running Binary Ninja with modified Qt l - On Linux, replace the `libQt5Core.so.5`, `libQt5DBus.so.5`, `libQt5Gui.so.5`, `libQt5Network.so.5`, `libQt5Widgets.so.5`, `libQt5XcbQpa.so.5` files wherever Binary Ninja was extracted [Building Qt 5 from Git]: https://wiki.qt.io/Building-Qt-5-from-Git -[Qt 5.12]: https://www.qt.io/qt-licensing-terms/ +[Qt 5.14]: https://www.qt.io/qt-licensing-terms/ [capstone]: https://github.com/aquynh/capstone [capstone license]: https://github.com/aquynh/capstone/blob/master/LICENSE.TXT [breathe license]: https://github.com/michaeljones/breathe/blob/master/LICENSE @@ -97,7 +97,7 @@ Please note that we offer no support for running Binary Ninja with modified Qt l [sphinx]: http://www.sphinx-doc.org/en/stable/index.html [sqlite license]: https://www.sqlite.org/copyright.html [sqlite]: https://www.sqlite.org/index.html -[tarball]: https://binary.ninja/qt5.12.3.tar.xz +[tarball]: https://binary.ninja/qt5.14.0.tar.xz [tomcrypt license]: https://github.com/libtom/libtomcrypt/blob/develop/LICENSE [tomcrypt]: https://github.com/libtom/libtomcrypt [unsign]: https://github.com/steakknife/unsign diff --git a/scripts/install_api.py b/scripts/install_api.py index dffbc99d..27d158dd 100644 --- a/scripts/install_api.py +++ b/scripts/install_api.py @@ -92,7 +92,7 @@ else: binaryninja_pth_path = os.path.join(install_path, 'binaryninja.pth') with open(binaryninja_pth_path, 'wb') as pth_file: pth_file.write((api_path+"\n").encode('charmap')) - if sys.version_info.major < 3 or (sys.version_info.major == 3 and sys.version_info.minor < 8): + if sys.version_info.major < 3 or (sys.version_info.major == 3 and sys.version_info.minor < 9): pth_file.write((api_path+sys.version[0]+"\n").encode('charmap')) #support for python2/3 QT bindings print("Binary Ninja API installed using {}".format(binaryninja_pth_path)) |
