Skip to content

Commit

Permalink
Added dependencies to build rule to resolve #27
Browse files Browse the repository at this point in the history
  • Loading branch information
cjweeks committed Aug 16, 2017
1 parent a7e7b60 commit 60fb619
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Expand Up @@ -24,11 +24,14 @@ Enter the cloned repository, and append the following to the `tensorflow/BUILD`
cc_binary(
name = "libtensorflow_all.so",
linkshared = 1,
linkopts = ["-Wl,--version-script=tensorflow/tf_version_script.lds"], # if use Mac remove this line
linkopts = ["-Wl,--version-script=tensorflow/tf_version_script.lds"], # Remove this line if you are using MacOS
deps = [
"//tensorflow/cc:cc_ops",
"//tensorflow/core:framework_internal",
"//tensorflow/core:tensorflow",
"//tensorflow/cc:cc_ops",
"//tensorflow/cc:client_session",
"//tensorflow/cc:scope",
"//tensorflow/c:c_api",
],
)
```
Expand Down

0 comments on commit 60fb619

Please sign in to comment.