diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2022-07-22 06:32:33 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2022-07-22 06:33:05 +0000 |
commit | 944b51ca160cad61a387c3ed3ab407bb6e22659c (patch) | |
tree | e458df62a41fc4c6136b7eac8dde3052c8af1139 | |
parent | cfdce410e66421d70f6309f609ef85f3dd63c94c (diff) |
misc/nn-insight: Fix build on aarch64
Reported by: fallout
-rw-r--r-- | misc/nn-insight/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/misc/nn-insight/Makefile b/misc/nn-insight/Makefile index 1b975b34e2c6..6203e7a50326 100644 --- a/misc/nn-insight/Makefile +++ b/misc/nn-insight/Makefile @@ -20,9 +20,12 @@ LIB_DEPENDS= libcgraph.so:graphics/graphviz \ libtcmalloc.so:devel/google-perftools USES= compiler:c++17-lang cmake pkgconfig qt:5 +USE_QT= core gui svg widgets buildtools_build qmake_build + USE_GITHUB= yes GH_ACCOUNT= yurivict -USE_QT= core gui svg widgets buildtools_build qmake_build + +CMAKE_ARGS_aarch64= -DENABLE_NATIVE_OPTIMIZATIONS=OFF PLIST_FILES= bin/nn-insight \ libexec/nn-insight/tf-lite-plugin.so |