0
OSX El CapitanでTensorFlowに対応する基本チュートリアルを作成しようとしていますが、このエラーが発生します。何か案は? (thisの議論に基づいて)OSX El CapitanでBazelビルドMnistサービングインターフェイスが失敗する
$ bazel build //tensorflow_serving/example:mnist_inference
INFO: Found 1 target...
ERROR: /Users/robertgrzesik/Documents/Development/TensorFlow/serving/tensorflow_serving/example/BUILD:53:1: Linking of rule '//tensorflow_serving/example:mnist_inference' failed: osx_gcc_wrapper.sh failed: error executing command external/bazel_tools/tools/cpp/osx_gcc_wrapper.sh -o bazel-out/local_darwin-fastbuild/bin/tensorflow_serving/example/mnist_inference ... (remaining 512 argument(s) skipped): com.google.devtools.build.lib.shell.BadExitStatusException: Process exited with status 1.
clang: warning: argument unused during compilation: '-pthread'
ld: warning: option -noall_load is obsolete and being ignored
ld: warning: option -noall_load is obsolete and being ignored
ld: warning: option -noall_load is obsolete and being ignored
ld: warning: option -noall_load is obsolete and being ignored
ld: warning: option -noall_load is obsolete and being ignored
ld: warning: option -noall_load is obsolete and being ignored
この変更https://tensorflow.github.io/serving/serving_basicはまた私のワークスペースファイルに行われた:
はここでチュートリアルへのリンクです
git_repository(
name = "boringssl_git",
commit = "32bfe16a53ad13523eadce08dd2f835bc2b0b52d",
init_submodules = True,
remote = "https://github.com/ctiller/boringssl-bazel",
)
は、ドッキングウィンドウを使用するための一時的な修正を発見しました。いまのところOSXの既知の問題があるようです:http://tensorflow.github.io/serving/docker – Rob