0

Hi I used bazel in Windows 7

I try bazel build tensorflow/contrib/lite/toco:toco in cmd.exe

Then I got error message : server terminated abruptly (error code :14, error message: '',log file: 'c:\users\lee_bazel_lee\zjiu63sl/server/jvm.out

What can I do? Please help

enter image description here

Try in tensorflow-master folder, I got error message.enter image description here

Chansu Lee
  • 17
  • 2
  • 7
  • It looks like you're trying to build from *outside* of the tensorflow directory. You need to run Bazel from within `tensorflow-master` to build the target `//tensorflow/contrib/lite/toco:toco`. Do you mind trying that out? – Jin Jun 02 '18 at 21:14
  • I try it but I got error message :- no such package '@eigen_archive//' ~ – Chansu Lee Jun 03 '18 at 07:57
  • I did edit my question. Please note image 2nd description. – Chansu Lee Jun 03 '18 at 08:08

1 Answers1

1

Your current error message states that the command "patch" is not found. I gues your mingw installation has not installed this programm. See Apply a patch file in Windows using Mingw how to install it.

castler
  • 56
  • 4