mirror of
https://git.freebsd.org/ports.git
synced 2025-05-15 16:51:52 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
13 lines
666 B
Text
13 lines
666 B
Text
--- third_party/tflite/features.gni.orig 2024-06-18 21:43:59 UTC
|
|
+++ third_party/tflite/features.gni
|
|
@@ -8,8 +8,8 @@ declare_args() {
|
|
# This enables building TFLite with XNNPACK. Currently only available for
|
|
# Linux, macOS and Windows arm64/x64/x86 targets.
|
|
build_tflite_with_xnnpack =
|
|
- (is_linux || is_mac || is_win) &&
|
|
- (current_cpu == "arm64" || current_cpu == "x64" || current_cpu == "x86")
|
|
+ ((is_linux || is_mac || is_win) &&
|
|
+ (current_cpu == "arm64" || current_cpu == "x64" || current_cpu == "x86")) && !is_bsd
|
|
|
|
# Turns on TFLITE_WITH_RUY, using ruy as the gemm backend instead of gemmlowp.
|
|
build_tflite_with_ruy = true
|