首页 文章

运行命令“bazel build tensorflow / examples / image_retraining:retrain”时无法构建

提问于
浏览
0

我正在尝试使用python 2.7在没有GPU的情况下在Ubuntu 14.04 LTS上构建张量流 . 当我在终端上运行以下命令后跟此tutorial

bazel build tensorflow/examples/image_retraining:retrain

它说无法使用日志构建:

ERROR: /home/yuan/tensorflow_source/tensorflow/tensorflow/python/BUILD:1826:1: Linking of rule '//tensorflow/python:_pywrap_tensorflow.so' failed: gcc failed: error executing command 
  (cd /home/yuan/.cache/bazel/_bazel_yuan/e5b8b6538ba16bbae5b1e0f5c26b7a12/execroot/tensorflow && \
  exec env - \
  /usr/bin/gcc -shared -o bazel-out/local-fastbuild/bin/tensorflow/python/_pywrap_tensorflow.so -Wl,--version-script tensorflow/tf_version_script.lds -pthread -Wl,-no-as-needed -B/usr/bin -B/usr/bin -pass-exit-codes '-Wl,--build-id=md5' '-Wl,--hash-style=gnu' -Wl,-S -Wl,@bazel-out/local-fastbuild/bin/tensorflow/python/_pywrap_tensorflow.so-2.params): com.google.devtools.build.lib.shell.BadExitStatusException: Process exited with status 1.
bazel-out/local-fastbuild/bin/tensorflow/core/libversion_lib.a(version_info.pic.o): In function `tf_git_version()':
version_info.cc:(.text+0x0): multiple definition of `tf_git_version()'
bazel-out/local-fastbuild/bin/tensorflow/core/libframework_internal.lo(version_info.pic.o):version_info.cc:(.text+0x0): first defined here
bazel-out/local-fastbuild/bin/tensorflow/core/libversion_lib.a(version_info.pic.o): In function `tf_compiler_version()':
version_info.cc:(.text+0xd): multiple definition of `tf_compiler_version()'
bazel-out/local-fastbuild/bin/tensorflow/core/libframework_internal.lo(version_info.pic.o):version_info.cc:(.text+0xd): first defined here
collect2: error: ld returned 1 exit status
Target //tensorflow/examples/image_retraining:retrain failed to build
INFO: Elapsed time: 52.885s, Critical Path: 34.63s

这是我的构建环境:

操作系统:Ubuntu 14.04 LTS 64位,带RAM 12Gib
gcc版本:4.8.4
python版本:2.7.6
bazel版本:0.3.2
张量流源的git版本:v0.11.0rc0-1541-g3737ac3

有没有人有想法修复此错误?非常感谢!

1 回答

  • 0

    @David感谢您的帮助,看来我的./configure结果并不像预期的那样 .

    我最终通过以下步骤 Build 成功

    • 将张量流源同步到HEAD

    • 再次运行./configure,如果有任何错误,请参阅this .

    • 再次运行build命令

    bazel build tensorflow / examples / image_retraining:retrain

    而我的构建结果将没有错误 .

相关问题