2016-05-13 61 views
0

我試圖按照syntaxnet's github page上的說明構建syntaxnet分析器模型。Bazel構建失敗,並在構建語法時執行「執行genrule @six_archive //:copy_six失敗」錯誤

我的系統是Debian Wheezy。與Ubuntu 14.04 LTS或15.05應該沒有太大區別。我從源文件中編譯了bazel 0.2.2(而不是0.2.2b),它看起來工作正常。

每當我啓動bazel test syntaxnet/... util/utf8/...命令,沒有測試執行(全部跳過)與一些相當神祕的錯誤消息。這裏有一個例子:

[email protected]:~/tensorflow_syntaxnet/models/syntaxnet# ../../bazel/output/bazel test syntaxnet/... util/utf8/... 
Extracting Bazel installation... 
............. 
INFO: Found 65 targets and 12 test targets... 
ERROR: /root/.cache/bazel/_bazel_root/74c6bab7a21f28ad02405b720243d086/external/six_archive/BUILD:1:1: Executing genrule @six_archive//:copy_six failed: namespace-sandbox failed: error executing command /root/.cache/bazel/_bazel_root/74c6bab7a21f28ad02405b720243d086/syntaxnet/_bin/namespace-sandbox ... (remaining 5 argument(s) skipped). 
unshare failed with EINVAL even after 101 tries, giving up. 
INFO: Elapsed time: 95.469s, Critical Path: 22.46s 
//syntaxnet:arc_standard_transitions_test        NO STATUS 
//syntaxnet:beam_reader_ops_test          NO STATUS 
//syntaxnet:graph_builder_test          NO STATUS 
//syntaxnet:lexicon_builder_test          NO STATUS 
//syntaxnet:parser_features_test          NO STATUS 
//syntaxnet:parser_trainer_test          NO STATUS 
//syntaxnet:reader_ops_test           NO STATUS 
//syntaxnet:sentence_features_test         NO STATUS 
//syntaxnet:shared_store_test           NO STATUS 
//syntaxnet:tagger_transitions_test         NO STATUS 
//syntaxnet:text_formats_test           NO STATUS 
//util/utf8:unicodetext_unittest          NO STATUS 

Executed 0 out of 12 tests: 12 were skipped. 

我使用的是Oracle的Java 8 JDK的建議,我的編譯器是:

~/tensorflow_syntaxnet/models/syntaxnet# gcc --version 
gcc (Debian 4.7.2-5) 4.7.2 
Copyright (C) 2012 Free Software Foundation, Inc. 
This is free software; see the source for copying conditions. There is NO 
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 

試圖尋找到這是一個在錯誤消息中提到的namespace-sandbox二進制,但我之前深入探究這一點,我想我會在這裏問。

~/tensorflow_syntaxnet/models/syntaxnet# ls -l /root/.cache/bazel/_bazel_root/74c6bab7a21f28ad02405b720243d086/syntaxnet/_bin/namespace-sandbox 
lrwxrwxrwx 1 root root 108 May 13 14:52 /root/.cache/bazel/_bazel_root/74c6bab7a21f28ad02405b720243d086/syntaxnet/_bin/namespace-sandbox -> /root/.cache/bazel/_bazel_root/install/ca381eaad1c931167a6355cb8a2b98cf/_embedded_binaries/namespace-sandbox 
~/tensorflow_syntaxnet/models/syntaxnet# readlink /root/.cache/bazel/_bazel_root/74c6bab7a21f28ad02405b720243d086/syntaxnet/_bin/namespace-sandbox 
/root/.cache/bazel/_bazel_root/install/ca381eaad1c931167a6355cb8a2b98cf/_embedded_binaries/namespace-sandbox 

命令似乎工作正常,但:

~/tensorflow_syntaxnet/models/syntaxnet# file $(readlink /root/.cache/bazel/_bazel_root/74c6bab7a21f28ad02405b720243d086/syntaxnet/_bin/namespace-sandbox) 
/root/.cache/bazel/_bazel_root/install/ca381eaad1c931167a6355cb8a2b98cf/_embedded_binaries/namespace-sandbox: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.26, BuildID[md5/uuid]=0xecfd97b6a6b9a193b045be13654bd55b, not stripped 
~/tensorflow_syntaxnet/models/syntaxnet# /root/.cache/bazel/_bazel_root/install/ca381eaad1c931167a6355cb8a2b98cf/_embedded_binaries/namespace-sandbox 
No command specified. 
Usage: /root/.cache/bazel/_bazel_root/install/ca381eaad1c931167a6355cb8a2b98cf/_embedded_binaries/namespace-sandbox [-S sandbox-root] -- command arg1 
    provided: /root/.cache/bazel/_bazel_root/install/ca381eaad1c931167a6355cb8a2b98cf/_embedded_binaries/namespace-sandbox 
Mandatory arguments: 
    -S <sandbox-root> directory which will become the root of the sandbox 
    -- command to run inside sandbox, followed by arguments 

Optional arguments: 
    -W <working-dir> working directory 
    -T <timeout> timeout after which the child process will be terminated with SIGTERM 
    -t <timeout> in case timeout occurs, how long to wait before killing the child with SIGKILL 
    -d <dir> create an empty directory in the sandbox 
    -M/-m <source/target> system directory to mount inside the sandbox 
    Multiple directories can be specified and each of them will be mounted readonly. 
    The -M option specifies which directory to mount, the -m option specifies where to 
    mount it in the sandbox. 
    -n if set, a new network namespace will be created 
    -r if set, make the uid/gid be root, otherwise use nobody 
    -D if set, debug info will be printed 
    -l <file> redirect stdout to a file 
    -L <file> redirect stderr to a file 
    @FILE read newline-separated arguments from FILE 

任何想法?

更新:我已經做究竟對Ubuntu的LTS 14.04相同的步驟(我的小工作站,而不是運行Debian生產服務器),一切運作良好那裏,所有的測試通過。我不知道有什麼區別。

回答

1

設置沙箱時顯然會出現一些權限錯誤。快速解決方法是使用--genrule_strategy=standalone --spawn_strategy=standalone(注意第二個已經在TensorFlow rc文件中指定)停用沙箱。 echo "build --genrule_strategy=standalone --spawn_strategy=standalone" >>~/.bazelrc

+0

感謝達米安:

你可以在你的〜/ .bazelrc設置這些標誌。在清理/完全重建之後,構建仍然失敗,但使用不同的錯誤消息,可能比構建問題更多的是源代碼。 '/ core/BUILD:734:1:C++編譯規則'@ tf // tensorflow/core:lib_internal'失敗:gcc失敗:錯誤執行命令/ usr/bin/gcc -U_FORTIFY_SOURCE'-D_FORTIFY_SOURCE = 1' - fstack-protector -Wall -Wl,-z,-relro,-z,now -Wunused-but-set-parameter -Wno-free-nonheap-object -fno-omit-frame-pointer -g0 -O2 -DNDEBUG .. 。(剩餘的70個參數被跳過):com.google.devtools.build.lib.shell.BadExitStatusException:進程退出狀態1' – cosimo

相關問題