aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/tensorflow-common/README-macos
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/tensorflow-common/README-macos
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/tensorflow-common/README-macos')
-rw-r--r--vcpkg/ports/tensorflow-common/README-macos12
1 files changed, 12 insertions, 0 deletions
diff --git a/vcpkg/ports/tensorflow-common/README-macos b/vcpkg/ports/tensorflow-common/README-macos
new file mode 100644
index 0000000..6bbfd07
--- /dev/null
+++ b/vcpkg/ports/tensorflow-common/README-macos
@@ -0,0 +1,12 @@
+Warning: Static TensorFlow build contains several external dependencies that may cause linking conflicts
+ (for example, one cannot use both openssl and TensorFlow in the same project, since TensorFlow contains boringssl).
+
+Note: Besides TensorFlow itself, you'll also need to pass its dependencies to the linker:
+ * CoreFoundation
+ * Security (only when linking against the whole library, see below)
+for example, '-ltensorflow_cc -framework CoreFoundation -framework Security'.
+
+Note: There is no separate libtensorflow_framework.a as it got merged into libtensorflow_cc.a to avoid linking conflicts.
+
+Note: For some TensorFlow features (e.g. OpRegistry), it might be necessary to tell the linker to include the whole library:
+ '-Wl,-force_load,path/to/libtensorflow_cc.a [rest of linker arguments]'