ATTENTION! Please read and follow:
- if this is a _question_ about how to build / test / query / deploy using Bazel, ask it on StackOverflow instead: https://stackoverflow.com/questions/tagged/bazel
- if this is a _discussion starter_, send it to [email protected]
- if this is a _bug_ or _feature request_, fill the form below as best as you can.
I'm trying to build bazel for windows its an urgent situation i downloaded the last release bazel-0.24.1-dist.zip and I did this steps:
From Msys64 command line I run:
1/ cd /C/tensorflowCompiler/bazel-0.24.1-dist
2/ pacman -Syuu gcc git curl zip unzip zlib-devel
3/ export BAZEL_WRKDIR=c/tempdir/shrtpath
4/ export BAZEL_SH=C:/msys64/usr/bin/bash.exe
5/ export BAZEL_VS=C:/Program\ Files(x86)/Microsoft\ Visual\ Studio\ 14.0
6/ export BAZEL_PYTHON=C:/Python36/python.exe
7/ export JAVA_HOME="$(ls -d C:/Program\ Files/Java/jdk1.8.0_211 | sort | tail -n 1)"
8/ and from here started the problem : ./compile.sh
it shows :
Building Bazel from scratch
ERROR: Must specify PROTOC if not bootstrapping from the distribution artifactFeature requests: what underlying problem are you trying to solve with this feature?
so I search more i tried this command: bazel build //src:bazel
but it didn't work too this is the error -bash: bazel : commande introuvable
WHAT TO DO PLEASE!!!!!!!!!!!!!!!!
This error message only occurs when you try to run "./compile.sh" from a git checkout, not from the distribution archive.
When I download https://github.com/bazelbuild/bazel/releases/download/0.24.1/bazel-0.24.1-dist.zip I am able to build it without this error.
CCing @laszlocsomor to see if he has any suggestions.
Can you try using a release build, e.g. https://github.com/bazelbuild/bazel/releases/download/0.24.1/bazel-0.24.1-windows-x86_64.exe ?
If you have to bootstrap, try the following:
bazel build //src:bazel.exe)Also, check whether the c:\tensorflowCompiler\bazel-0.24.1-dist\derived\src\java directory exists.
Here's why:
https://github.com/bazelbuild/bazel/blob/f092ec388a4b58788285b928c86f0f81561d4be4/scripts/bootstrap/compile.sh#L184-L192
Do NOT set PROTOC. You should not have to when bootstrapping. I don't know what happens when you do set it.
Thank you so much I downloaded the release from your link and finaly it starts the building from scratch it is a little bit slow I hope it complete successfuly I'll contact you if it wont goes well
Where did you download it from originally?
here c:\tensorflowCompiler
I created that folder because then i will use bazel for building tensorflow
bad news the build is failed I get this error ./compile.sh 🍃 Building Bazel from scratch......ERROR: VCVARSALL.bat not found, check your Visual Studio installation
That is a directory on your harddrive. Where did you download the tensorflow compiler and Bazel?
I CREATED that folder I still didn't download any thing about tensorflow
and for the bazel I downloaded it from your link https://github.com/bazelbuild/bazel/releases/download/0.24.1/bazel-0.24.1-dist.zip
@laszlocsomor sorry but I am new with this I don't understand why this command bazel build //src:bazel.exe seems working for everybody but me I run it in msys2 like all the other command but the error message is : bash: bazel: command not found
And please I'd like to Know how to use your link I downloaded it but really don't know how to use it https://github.com/bazelbuild/bazel/releases/download/0.24.1/bazel-0.24.1-windows-x86_64.exe download the bazel-0.24.1.dist.zip from the other link but I'd like to try your method because of the problem of VCVARSALL.bat didn't make a sence that file exists here C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC thank you so much
Bazel is released in multiple formats -- as a binary and as a so-called "distribution archive" (which is a zip file of source code).
If you click https://github.com/bazelbuild/bazel/releases/download/0.24.1/bazel-0.24.1-windows-x86_64.exe, you will download a pre-built Bazel binary. You can rename it to "bazel.exe" and run it. This is Bazel, it's the 0.24.1 released version, and you can use it immediately without having to build anything else.
If you click https://github.com/bazelbuild/bazel/releases/download/0.24.1/bazel-0.24.1-dist.zip, you will download the distribution archive, i.e. the source code of Bazel. This has the ./compile.sh script you've used, which lets you build Bazel without an existing Bazel binary. This approach did not work for you, so please go ahead and download the pre-built binary.
Important: the distribution archive is NOT the same as the source code cloned from GitHub. You cannot use ./compile.sh in a source tree that you got with git clone https://github.com/bazelbuild/bazel.
If you git clone https://github.com/bazelbuild/bazel, that gives you the source tree from GitHub. If you have a Bazel binary already, you can build Bazel again from source. This is how we, the development team, develop Bazel -- we use an existing binary to build a new one. If you want to build Bazel from a GitHub checkout, you will need an existing Bazel binary (e.g. the pre-built binary you just downloaded earlier) to build it with. And that is what the bazel build //src:bazel.exe command is for -- the first "bazel" in this command refers to the bazel.exe you downloaded (the pre-built binary), and the second "bazel.exe" is the name of the build target in the "src" package, that you want to build with the first "bazel".
This is not a bug, I'm closing the issue.
@laszlocsomor SORRY really SORRY PLEASE I totally understand you but my originally problem is that when I execute the bazel .exe which is the pre-built binary IT DOESN'T WORK it shows me : Bazel is a command line tool.
Try opening a console, such as the Windows Command Prompt (cmd.exe) or PowerShell, and running "bazel help".
Press Enter to close this window...
AND when I run the cmd and enter bazel help it shows me that bazel is an unknown command for windows REALLY NEED YOUR HELP PLEASE !!!!!!!!!!!!!!!!!!!!!!
Because in cmd.exe you have to cd into the directory where you have bazel.exe, or use its absolute path.
So, assuming that you have "bazel.exe" under "c:\tensorflowCompiler", you either have to run (in cmd.exe):
c:
cd c:\tensorflowCompiler
bazel build --config=opt //tensorflow/tools/pip_package:build_pip_package
(or whatever "bazel build" you want to run)
OR, you have to use Bazel's absolute path:
c:\tensorflowCompiler\bazel.exe build --config=opt //tensorflow/tools/pip_package:build_pip_package
I recommend the second option, because that works from any directory.
THANK YOU SO MUCH
C:\tensorflowCompiler>c:\tensorflowCompilerbazel.exe build --config=opt //tensorflow/tools/pip_package:build_pip_package
ERROR: The 'build' command is only supported from within a workspace (below a directory having a WORKSPACE file).
See documentation at https://docs.bazel.build/versions/master/build-ref.html#workspace
WARNING: --batch mode is deprecated. Please instead explicitly shut down your Bazel server using the command "bazel shutdown".
I tried both methodS but it shoWs the same ERROR
C:\compilertensorflow>bazel build //src:bazel.exe
Starting local Bazel server and connecting to it...
Loading:
Loading: 0 packages loaded
Loading: 0 packages loaded
currently loading: src
Analyzing: target //src:bazel.exe (1 packages loaded, 0 targets configured)
Analyzing: target //src:bazel.exe (10 packages loaded, 21 targets configured)
Analyzing: target //src:bazel.exe (24 packages loaded, 45 targets configured)
Analyzing: target //src:bazel.exe (62 packages loaded, 384 targets configured)
Analyzing: target //src:bazel.exe (74 packages loaded, 528 targets configured)
Analyzing: target //src:bazel.exe (74 packages loaded, 528 targets configured)
Analyzing: target //src:bazel.exe (81 packages loaded, 604 targets configured)
Analyzing: target //src:bazel.exe (82 packages loaded, 629 targets configured)
WARNING: C:/compilertensorflow/src/main/native/windows/BUILD:66:1: in linkstatic attribute of cc_library rule //src/main/native/windows:resources: setting 'linkstatic=1' is recommended if there are no object files
Analyzing: target //src:bazel.exe (98 packages loaded, 742 targets configured)
Analyzing: target //src:bazel.exe (98 packages loaded, 742 targets configured)
Analyzing: target //src:bazel.exe (100 packages loaded, 964 targets configured)
Analyzing: target //src:bazel.exe (114 packages loaded, 1646 targets configured)
Analyzing: target //src:bazel.exe (140 packages loaded, 2567 targets configured)
Analyzing: target //src:bazel.exe (202 packages loaded, 5543 targets configured)
Analyzing: target //src:bazel.exe (208 packages loaded, 10196 targets configured)
Analyzing: target //src:bazel.exe (208 packages loaded, 10196 targets configured)
Analyzing: target //src:bazel.exe (208 packages loaded, 10196 targets configured)
Analyzing: target //src:bazel.exe (208 packages loaded, 10196 targets configured)
Analyzing: target //src:bazel.exe (208 packages loaded, 10196 targets configured)
Analyzing: target //src:bazel.exe (209 packages loaded, 10199 targets configured)
Analyzing: target //src:bazel.exe (209 packages loaded, 10199 targets configured)
Analyzing: target //src:bazel.exe (209 packages loaded, 10199 targets configured)
INFO: Analysed target //src:bazel.exe (211 packages loaded, 10724 targets configured).
INFO: Found 1 target...
[0 / 8] [-----] BazelWorkspaceStatusAction stable-status.txt
[116 / 1,361] [-----] Writing file external/io_bazel/third_party/grpc/grpc-java-plugin.exe-2.params [for host]
[122 / 2,010] [-----] Creating source manifest for //src/main/java/com/google/devtools/build/lib:bazel/BazelServer
still running IS THIS GOOD !!!!!!!!!!!!!!!!!!!!
Yes, this is good. Tensorflow builds for a long time.
Microsoft Windows [version 10.0.10240]
(c) 2015 Microsoft Corporation. Tous droits réservés.
C:\compilertensorflow>bazel build --config=opt //tensorflow/tools/pip_package:build_pip_package
ERROR: The 'build' command is only supported from within a workspace (below a directory having a WORKSPACE file).
See documentation at https://docs.bazel.build/versions/master/build-ref.html#workspace
WARNING: --batch mode is deprecated. Please instead explicitly shut down your Bazel server using the command "bazel shutdown".
C:\compilertensorflow>bazel build //src:bazel.exe
Starting local Bazel server and connecting to it...
Loading:
Loading: 0 packages loaded
Loading: 0 packages loaded
currently loading: src
Analyzing: target //src:bazel.exe (1 packages loaded, 0 targets configured)
Analyzing: target //src:bazel.exe (10 packages loaded, 21 targets configured)
Analyzing: target //src:bazel.exe (24 packages loaded, 45 targets configured)
Analyzing: target //src:bazel.exe (62 packages loaded, 384 targets configured)
Analyzing: target //src:bazel.exe (74 packages loaded, 528 targets configured)
Analyzing: target //src:bazel.exe (74 packages loaded, 528 targets configured)
Analyzing: target //src:bazel.exe (81 packages loaded, 604 targets configured)
Analyzing: target //src:bazel.exe (82 packages loaded, 629 targets configured)
WARNING: C:/compilertensorflow/src/main/native/windows/BUILD:66:1: in linkstatic attribute of cc_library rule //src/main/native/windows:resources: setting 'linkstatic=1' is recommended if there are no object files
Analyzing: target //src:bazel.exe (98 packages loaded, 742 targets configured)
Analyzing: target //src:bazel.exe (98 packages loaded, 742 targets configured)
Analyzing: target //src:bazel.exe (100 packages loaded, 964 targets configured)
Analyzing: target //src:bazel.exe (114 packages loaded, 1646 targets configured)
Analyzing: target //src:bazel.exe (140 packages loaded, 2567 targets configured)
Analyzing: target //src:bazel.exe (202 packages loaded, 5543 targets configured)
Analyzing: target //src:bazel.exe (208 packages loaded, 10196 targets configured)
Analyzing: target //src:bazel.exe (208 packages loaded, 10196 targets configured)
Analyzing: target //src:bazel.exe (208 packages loaded, 10196 targets configured)
Analyzing: target //src:bazel.exe (208 packages loaded, 10196 targets configured)
Analyzing: target //src:bazel.exe (208 packages loaded, 10196 targets configured)
Analyzing: target //src:bazel.exe (209 packages loaded, 10199 targets configured)
Analyzing: target //src:bazel.exe (209 packages loaded, 10199 targets configured)
Analyzing: target //src:bazel.exe (209 packages loaded, 10199 targets configured)
INFO: Analysed target //src:bazel.exe (211 packages loaded, 10724 targets configured).
INFO: Found 1 target...
[0 / 8] [-----] BazelWorkspaceStatusAction stable-status.txt
[116 / 1,361] [-----] Writing file external/io_bazel/third_party/grpc/grpc-java-plugin.exe-2.params [for host]
[122 / 2,010] [-----] Creating source manifest for //src/main/java/com/google/devtools/build/lib:bazel/BazelServer
[124 / 2,054] checking cached actions
[164 / 2,054] SkylarkAction external/bazel_tools/tools/jdk/platformclasspath.jar; 3s local ... (4 actions running)
[221 / 2,054] Extracting interface //third_party:android_common_25_0_0; 1s local ... (4 actions, 3 running)
[262 / 2,054] Building external/desugar_jdk_libs/src/share/classes/java/libjava.jar (215 source files); 9s worker ... (4 actions, 3 running)
[274 / 2,054] Building external/desugar_jdk_libs/src/share/classes/java/libjava.jar (215 source files); 50s worker ... (4 actions, 3 running)
[306 / 2,054] Compiling Java headers src/main/java/com/google/devtools/build/lib/skyframe/serialization/libserialization-hjar.jar (53 files) [for host]; 6s local ... (4 actions, 3 running)
[330 / 2,054] Compiling Java headers src/main/java/com/google/devtools/build/lib/skyframe/trimming/libtrimmed_configuration_cache-hjar.jar (3 files); 18s local ... (4 actions running)
[367 / 2,054] Compiling Java headers src/main/java/com/google/devtools/build/lib/authandtls/libauthandtls-hjar.jar (2 files); 5s local ... (4 actions, 3 running)
INFO: From Linking src/main/native/windows/resources.lib:
LINK : warning LNK4068: /MACHINE non spÚcifiÚá; X64 pris par dÚfaut
INFO: From Compiling src/main/tools/process-wrapper-windows.cc:
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\iostream
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\istream
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ostream
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ios
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xlocnum
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\climits
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\yvals.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xkeycheck.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\crtdefs.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sal.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ConcurrencySal.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vadefs.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\use_ansi.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\limits.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cmath
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\math.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtgmath.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtr1common
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cstdlib
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\stdlib.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_malloc.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_search.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\stddef.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wstdlib.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cstdio
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\stdio.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wstdio.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_stdio_config.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\streambuf
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xiosbase
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xlocale
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cstring
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\string.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_memory.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_memcpy_s.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\errno.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime_string.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wstring.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdexcept
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\exception
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\type_traits
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xstddef
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cstddef
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\initializer_list
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\malloc.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime_exception.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\eh.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_terminate.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xstring
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cstdint
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\limits
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ymath.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cfloat
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\float.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cwchar
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\wchar.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wconio.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wctype.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wdirect.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wio.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_share.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wprocess.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wtime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\sys/stat.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\sys/types.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\new
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime_new.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xutility
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\iosfwd
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\crtdbg.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime_new_debug.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xatomic0.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\intrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\setjmp.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\immintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\wmmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\nmmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\smmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\tmmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\pmmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\emmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\mmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ammintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\typeinfo
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime_typeinfo.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xlocinfo
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xlocinfo.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\ctype.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\locale.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xfacet
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\system_error
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cerrno
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\share.h
INFO: From Compiling third_party/def_parser/def_parser_main.cc:
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\fstream
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\istream
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ostream
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ios
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xlocnum
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\climits
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\yvals.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xkeycheck.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\crtdefs.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sal.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ConcurrencySal.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vadefs.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\use_ansi.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\limits.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cmath
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\math.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtgmath.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtr1common
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cstdlib
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\stdlib.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_malloc.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_search.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\stddef.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wstdlib.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cstdio
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\stdio.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wstdio.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_stdio_config.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\streambuf
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xiosbase
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xlocale
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cstring
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\string.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_memory.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_memcpy_s.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\errno.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime_string.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wstring.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdexcept
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\exception
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\type_traits
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xstddef
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cstddef
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\initializer_list
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\malloc.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime_exception.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\eh.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_terminate.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xstring
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cstdint
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\limits
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ymath.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cfloat
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\float.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cwchar
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\wchar.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wconio.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wctype.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wdirect.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wio.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_share.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wprocess.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\corecrt_wtime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\sys/stat.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\sys/types.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\new
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime_new.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xutility
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\iosfwd
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\crtdbg.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime_new_debug.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xatomic0.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\intrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\setjmp.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\immintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\wmmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\nmmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\smmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\tmmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\pmmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\emmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\mmintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ammintrin.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\typeinfo
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime_typeinfo.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vcruntime.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xlocinfo
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xlocinfo.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\ctype.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\locale.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xfacet
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\system_error
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cerrno
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\share.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\iostream
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\string
Remarque : inclusion du fichier : C:\users\user_bazel_user\3rtf25qp\execroot\io_bazel\third_party/def_parser/def_parser.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\set
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory
ERROR: C:/compilertensorflow/src/main/tools/BUILD:59:1: Linking of rule '//src/main/tools:linux-sandbox' failed (Exit 1120)
LINK : warning LNK4044: option '/lm' non reconnueá; ignorÚe
LINK : error LNK2001: symbole externe non rÚsolu mainCRTStartup
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\LIB\msvcrt.lib : warning LNK4272: type d'ordinateur bibliothÞque 'X86' en conflit avec le type d'ordinateur cible 'x64'
bazel-out/x64_windows-fastbuild/bin/src/main/tools/linux-sandbox.exe : fatal error LNK1120: 1 externes non rÚsolus
Target //src:bazel.exe failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 516.925s, Critical Path: 133.51s
INFO: 261 processes: 181 local, 80 worker.
FAILED: Build did NOT complete successfully
FAILED: Build did NOT complete successfully
C:\compilertensorflow>``
what i did is: I starded a clean file : C:\compilertensorflow> here I coppied bazel.exe and a i extract this bazel-0.24.1-dist there it start the build look what shows me an other ERROR
You don't need bazel-0.24.1-dist.zip at all.
The build fails because you're using the French version of the Visual C++ compiler. Unfortunately Bazel 0.24.1 only supports the English version. (We fixed that bug at HEAD but it's not in release Bazel yet.)
You have to install an English version of Visual C++, then try the build again.
THANK YOU
before that you answer me i tried an other thing:
1/ C:\tensorflowComp>c:\tensorflowCompbazel.exe build --python_path=C:/Python36/python.exe
2/ C:\tensorflowComp>bazel build //src:bazel.exe
the build progressed with this better than the other command and it tooks much time and it goes further it shows me this ERROR has it a relation with visual version too??????:
``Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xxatomic
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xxatomic
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xxatomic
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cassert
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\assert.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\cinttypes
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\inttypes.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/gprpp/abstract.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/gprpp/debug_location.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/gprpp/ref_counted_ptr.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/iomgr/closure.h
Remarque : inclusion du fichier : C:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt\assert.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/iomgr/error.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/profiling/timers.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/iomgr/dynamic_annotations.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/iomgr/polling_entity.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/iomgr/pollset.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/iomgr/exec_ctx.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\include\grpc/support/cpu.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/gpr/tls.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/gpr/tls_msvc.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/gprpp/fork.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/iomgr/pollset_set.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/transport/transport.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/channel/context.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/iomgr/endpoint.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/iomgr/resource_quota.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/transport/byte_stream.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/gprpp/orphanable.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/transport/metadata_batch.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/transport/metadata.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/gpr/useful.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/transport/static_metadata.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/ext/filters/workarounds/workaround_utils.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\include\grpc/support/workaround_list.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/channel/channel_stack_builder.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/channel/channel_args.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\include\grpc/compression.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/iomgr/socket_mutator.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/surface/channel_init.h
Remarque : inclusion du fichier : C:\users\user\_bazel_user\3q73h6f3\execroot\io_bazel\third_party\grpc\src/core/lib/surface/channel_stack_type.h
ERROR: C:/tensorflowcomp/third_party/ijar/BUILD:79:1: Linking of rule '//third_party/ijar:ijar' failed (Exit 1112)
msvcrt.lib(std_type_info_static.obj) : fatal error LNK1112: type d'ordinateur module 'X86' en conflit avec le type d'ordinateur cible 'x64'
Target //src:bazel.exe failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 1233.603s, Critical Path: 64.10s
INFO: 1102 processes: 1083 local, 19 worker.
FAILED: Build did NOT complete successfully
FAILED: Build did NOT complete successfully
Why did you run bazel build //src:bazel.exe?
Also:
the build progressed with this better than the other command and it tooks much time and it goes further it shows me this ERROR has it a relation with visual version too??????:
I answered this previously: https://github.com/bazelbuild/bazel/issues/8186#issuecomment-487908749
windows 10 / and computer with 64-bit CPU
and I run this bazel build //src:bazel.exe because
C:\compilertensorflow>bazel build --config=opt //tensorflow/tools/pip_package:build_pip_package DIDN'T WORK so you told me that it is related with visual version too thank you so much for helping me i'll install the english version THANK YOU i'll contact you later
I want to recapitulize what I did and what doesn't work because REALLY it's an EMERGENCY CASE windows 10/64-bit CPU :
1/ you told me to execute the pre-build binary:: c:\tensorflowCompilerbazel.exe build --config=opt //tensorflow/tools/pip_package:build_pip_package
BUT the ERROR was: ERROR: The 'build' command is only supported from within a workspace (below a directory having a WORKSPACE file).
See documentation at https://docs.bazel.build/versions/master/build-ref.html#workspace
WARNING: --batch mode is deprecated. Please instead explicitly shut down your Bazel server using the command "bazel shutdown".
2/ SO I tried the other method of ...dist, I creat new folder where i copied bazel.exe and i extract the bazel.-0.24.1-dist file AND I run bazel build //src:bazel.exe
BUT it shows the error related to the french version of visual
3/I install the english pack language for visual 2015 BUT when I run bazel build //src:bazel.exe the new ERROR is now:
Loading:
Loading: 0 packages loaded
Analyzing: target //src:bazel.exe (0 packages loaded, 0 targets configured)
WARNING: C:/tensorflowcomp/src/main/native/windows/BUILD:66:1: in linkstatic attribute of cc_library rule //src/main/native/windows:resources: setting 'linkstatic=1' is recommended if there are no object files
INFO: Analysed target //src:bazel.exe (1 packages loaded, 2 targets configured).
INFO: Found 1 target...
Building: checking cached actions
[28 / 40] [-----] Executing genrule //tools/osx:xcode-locator-genrule ... (3 actions, 0 running)
[28 / 40] [-----] Executing genrule //tools/osx:xcode-locator-genrule ... (3 actions, 0 running)
[294 / 328] [Sched] Linking src/tools/singlejar/options.lib; 7s ... (4 actions, 1 running)
ERROR: C:/users/user/_bazel_user/3q73h6f3/external/com_google_protobuf/BUILD.bazel:408:1: Linking of rule '@com_google_protobuf//:protoc' failed (Exit 1112)
msvcrt.lib(std_type_info_static.obj) : fatal error LNK1112: type d'ordinateur module 'X86' en conflit avec le type d'ordinateur cible 'x64'
Target //src:bazel.exe failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 85.224s, Critical Path: 14.25s
INFO: 8 processes: 8 local.
FAILED: Build did NOT complete successfully
FAILED: Build did NOT complete successfully
HELP PLEASE!!!!!
You don't need to build Bazel from source, since you already have the binary, so forget about "bazel build //src:bazel" and about the ...dist file -- you don't need to extract the dist file to the tensorflow directory. If you did, then I recommend starting from scratch: get the tensorflow sources again in some other directory and just run the pre-built bazel binary.
If you just want to install Tensorflow, you don't need Bazel. Here's the installation guide: https://www.tensorflow.org/install#download-a-package
I'm afraid I can't help you further. There are tutorials on the internet to install and get started with Tensorflow and with Bazel, please try to read them again and follow their guide.
thank you firstly,I am doing all this work because i was facing the error of compatibilioty of tensorflow CPU with the AVX2 when i was training my deep learning model
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
so i search in internet and I found that building tensorflow with bazel can fix the problem
I started from downloading bazel and building and i was facing all this issues
and for tensorflow i still didn't download anything about it I have to fix my bazel building first
HELP HELP HELP
Here's how to build Tensorflow 1.14 from source with Bazel.
Start "Git Bash" or "MSYS2 shell" (whichever you use "git" from) and run
these commands:
mkdir -p /c/src/tensorflow
cd /c/src/tensorflow
git clone https://github.com/tensorflow/tensorflow
cd /c/src/tensorflow/tensorflow
git fetch origin r1.14
git checkout FETCH_HEAD
They create the c:\src\tensorflow directory, then clone TF's sources from
GitHub, then check out the r1.14 branch.
Download Bazel 0.24.1, rename the downloaded binary to "bazel.exe", create the c:\bazel\0.24.1 directory, and move "bazel.exe" into this directory.
Install Python3, the numpy package, and whatever TensorFlow requires.
Configure TensorFlow. For example if python is under c:\python36\python.exe, then start the "Command Prompt" from the Start Menu, and type these commands:
cd /D c:\src\tensorflow\tensorflow
c:\python36\python.exe configure.py
Answer the questions of the configuration script.
As the third or so question, it will ask:
Please specify optimization flags to use during compilation when bazel option "--config=opt" is specified [Default is /arch:AVX]:
or something like this. Type /arch:AVX here, press Enter.
Answer remaining questions of the config script.
Now you're ready to build TF from source.
In the Command Prompt from the previous step, run these commands:
cd /D c:\src\tensorflow\tensorflow
c:\bazel\0.24.1\bazel.exe build --config=opt //tensorflow/tools/pip_package:build_pip_package
I hope these help.
hello I get this ERROR do you have any idea about this:
c:\src\tensorflow\tensorflow>c:\bazel\0.24.1\bazel.exe build --config=opt //tensorflow/tools/pip_package:build_pip_package
Starting local Bazel server and connecting to it...
Loading:
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
currently loading: tensorflow/tools/pip_package
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (1 packages loaded, 0 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (3 packages loaded, 0 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (3 packages loaded, 0 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (3 packages loaded, 0 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (3 packages loaded, 0 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (3 packages loaded, 0 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (3 packages loaded, 0 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (3 packages loaded, 0 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (87 packages loaded, 83 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (166 packages loaded, 2788 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (180 packages loaded, 3050 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (218 packages loaded, 3411 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (248 packages loaded, 4590 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (248 packages loaded, 4590 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (248 packages loaded, 4590 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (270 packages loaded, 5138 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (288 packages loaded, 6085 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (288 packages loaded, 6085 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (288 packages loaded, 6085 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (288 packages loaded, 6085 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (292 packages loaded, 6296 targets configured)
ERROR: C:/src/tensorflow/tensorflow/tensorflow/tools/pip_package/BUILD:153:1: no such package '@png_archive//': Traceback (most recent call last):
File "C:/src/tensorflow/tensorflow/third_party/repo.bzl", line 106
_apply_patch(ctx, ctx.attr.patch_file)
File "C:/src/tensorflow/tensorflow/third_party/repo.bzl", line 73, in _apply_patch
_execute_and_check_ret_code(ctx, cmd)
File "C:/src/tensorflow/tensorflow/third_party/repo.bzl", line 52, in _execute_and_check_ret_code
fail("Non-zero return code({1}) when ...))
Non-zero return code(127) when executing 'C:\msys64\usr\bin\bash.exe -l -c "patch" "-p1" "-d" "C:/users/user/_bazel_user/biuqouag/external/png_archive" "-i" "C:/src/tensorflow/tensorflow/third_party/png_fix_rpi.patch"':
Stdout:
Stderr: /usr/bin/bash: patch : commande introuvable
and referenced by '//tensorflow/tools/pip_package:licenses'
ERROR: Analysis of target '//tensorflow/tools/pip_package:build_pip_package' failed; build aborted: no such package '@png_archive//': Traceback (most recent call last):
File "C:/src/tensorflow/tensorflow/third_party/repo.bzl", line 106
_apply_patch(ctx, ctx.attr.patch_file)
File "C:/src/tensorflow/tensorflow/third_party/repo.bzl", line 73, in _apply_patch
_execute_and_check_ret_code(ctx, cmd)
File "C:/src/tensorflow/tensorflow/third_party/repo.bzl", line 52, in _execute_and_check_ret_code
fail("Non-zero return code({1}) when ...))
Non-zero return code(127) when executing 'C:\msys64\usr\bin\bash.exe -l -c "patch" "-p1" "-d" "C:/users/user/_bazel_user/biuqouag/external/png_archive" "-i" "C:/src/tensorflow/tensorflow/third_party/png_fix_rpi.patch"':
Stdout:
Stderr: /usr/bin/bash: patch : commande introuvable
INFO: Elapsed time: 431.392s
INFO: 0 processes.
FAILED: Build did NOT complete successfully (292 packages loaded, 6296 targets configured)
FAILED: Build did NOT complete successfully (292 packages loaded, 6296 targets configured)
You don't have patch installed in msys.
Open MSYS2 shell and run pacman -S patch.
I installed the patch and the building starded well but now i got this new ERROR SORRY you are so helpful REALLY THANK YOU SO MUCH :
Remarque : inclusion du fichier : external/protobuf_archive/src\google/protobuf/port_def.inc
Remarque : inclusion du fichier : external/protobuf_archive/src\google/protobuf/port_undef.inc
Remarque : inclusion du fichier : external/protobuf_archive/src\google/protobuf/compiler/cpp/cpp_enum.h
Remarque : inclusion du fichier : external/protobuf_archive/src\google/protobuf/compiler/cpp/cpp_extension.h
Remarque : inclusion du fichier : external/protobuf_archive/src\google/protobuf/compiler/cpp/cpp_message.h
Remarque : inclusion du fichier : external/protobuf_archive/src\google/protobuf/compiler/cpp/cpp_message_layout_helper.h
Remarque : inclusion du fichier : external/protobuf_archive/src\google/protobuf/compiler/cpp/cpp_service.h
Remarque : inclusion du fichier : external/protobuf_archive/src\google/protobuf/port_def.inc
ERROR: C:/users/user/_bazel_user/biuqouag/external/protobuf_archive/BUILD:388:1: Linking of rule '@protobuf_archive//:protoc' failed (Exit 1112): link.exe failed: error executing command
cd C:/users/user/_bazel_user/biuqouag/execroot/org_tensorflow
SET LIB=C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\LIB;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\ATLMFC\LIB;C:\Program Files (x86)\Windows Kits\10\lib\10.0.10240.0\ucrt\x86;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.6.1\lib\um\x86;C:\Program Files (x86)\Windows Kits\8.1\lib\winv6.3\um\x86;
SET PATH=C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft SDKs\F#\4.0\Framework\v4.0\;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools;C:\Windows\Microsoft.NET\Framework\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Team Tools\Performance Tools;C:\Program Files (x86)\Windows Kits\8.1\bin\x86;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools\;;C:\Windows\system32
SET PWD=/proc/self/cwd
SET PYTHON_BIN_PATH=c:/Python36/python.exe
SET PYTHON_LIB_PATH=c:/Python36/lib/site-packages
SET TEMP=C:\Users\USER\AppData\Local\Temp
SET TF_CONFIGURE_IOS=0
SET TF_DOWNLOAD_CLANG=0
SET TF_NEED_CUDA=0
SET TF_NEED_OPENCL_SYCL=0
SET TF_NEED_ROCM=0
SET TMP=C:\Users\USER\AppData\Local\Temp
C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/link.exe /nologo /OUT:bazel-out/x64_windows-opt/bin/external/protobuf_archive/protoc.exe /SUBSYSTEM:CONSOLE -ignore:4221 -ignore:4221 -DEFAULTLIB:kernel32.lib -ignore:4221 -ignore:4221 /MACHINE:X64 @bazel-out/x64_windows-opt/bin/external/protobuf_archive/protoc.exe-2.params /OPT:ICF /OPT:REF
Execution platform: @bazel_tools//platforms:host_platform
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\LIB\setargv.obj : fatal error LNK1112: type d'ordinateur module 'X86' en conflit avec le type d'ordinateur cible 'x64'
Target //tensorflow/tools/pip_package:build_pip_package failed to build
INFO: Elapsed time: 552.128s, Critical Path: 35.10s
INFO: 165 processes: 165 local.
FAILED: Build did NOT complete successfully
FAILED: Build did NOT complete successfully
You're welcome. It's amazing how many things can break in the build.
The error means the C++ linker tries to link object files with incompatible bitness (64-bit vs 32-bit). In particular, c:\Program Files (x86)\Microsoft Visual Studio 14.0\vc\lib\setargv.obj is a 32-bit object file.
The 64-bit version is c:\Program Files (x86)\Microsoft Visual Studio 14.0\vc\lib\amd64\setargv.obj, does that file exist on your machine?
that file already exists
Looks like you're still using the French version of the compiler. Bazel doesn't yet support that -- the next release (0.26.0) will.
Try following the instructions of https://docs.bazel.build/versions/master/windows.html#build-c
I reinstall the english version but always the same ERROR:
[121 / 130] Compiling external/protobuf_archive/src/google/protobuf/text_format.cc; 9s local ... (3 actions running)
[153 / 163] Compiling external/protobuf_archive/src/google/protobuf/stubs/strutil.cc; 2s local ... (3 actions running)
ERROR: C:/users/user/_bazel_user/biuqouag/external/protobuf_archive/BUILD:388:1: Linking of rule '@protobuf_archive//:protoc' failed (Exit 1112): link.exe failed: error executing command
cd C:/users/user/_bazel_user/biuqouag/execroot/org_tensorflow
SET LIB=C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\LIB;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\ATLMFC\LIB;C:\Program Files (x86)\Windows Kits\10\lib\10.0.10240.0\ucrt\x86;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.6.1\lib\um\x86;C:\Program Files (x86)\Windows Kits\8.1\lib\winv6.3\um\x86;
SET PATH=C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft SDKs\F#\4.0\Framework\v4.0\;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools;C:\Windows\Microsoft.NET\Framework\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Team Tools\Performance Tools;C:\Program Files (x86)\Windows Kits\8.1\bin\x86;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools\;;C:\Windows\system32
SET PWD=/proc/self/cwd
SET PYTHON_BIN_PATH=c:/Python36/python.exe
SET PYTHON_LIB_PATH=c:/Python36/lib/site-packages
SET TEMP=C:\Users\USER\AppData\Local\Temp
SET TF_CONFIGURE_IOS=0
SET TF_DOWNLOAD_CLANG=0
SET TF_NEED_CUDA=0
SET TF_NEED_OPENCL_SYCL=0
SET TF_NEED_ROCM=0
SET TMP=C:\Users\USER\AppData\Local\Temp
C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/link.exe /nologo /OUT:bazel-out/x64_windows-opt/bin/external/protobuf_archive/protoc.exe /SUBSYSTEM:CONSOLE -ignore:4221 -ignore:4221 -DEFAULTLIB:kernel32.lib -ignore:4221 -ignore:4221 /MACHINE:X64 @bazel-out/x64_windows-opt/bin/external/protobuf_archive/protoc.exe-2.params /OPT:ICF /OPT:REF
Execution platform: @bazel_tools//platforms:host_platform
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\LIB\setargv.obj : fatal error LNK1112: module machine type 'X86' conflicts with target machine type 'x64'
Target //tensorflow/tools/pip_package:build_pip_package failed to build
INFO: Elapsed time: 347.454s, Critical Path: 28.15s
INFO: 163 processes: 163 local.
FAILED: Build did NOT complete successfully
FAILED: Build did NOT complete successfully
You're welcome. It's amazing how many things can break in the build.
The error means the C++ linker tries to link object files with incompatible bitness (64-bit vs 32-bit). In particular,
c:\Program Files (x86)\Microsoft Visual Studio 14.0\vc\lib\setargv.objis a 32-bit object file.The 64-bit version is
c:\Program Files (x86)\Microsoft Visual Studio 14.0\vc\lib\amd64\setargv.obj, does that file exist on your machine?
I found that the file setargv.obj exists in both directories I tried to remove the file that exists in th 32-bit directory i get this:
INFO: Analysed target //tensorflow/tools/pip_package:build_pip_package (0 packages loaded, 0 targets configured).
INFO: Found 1 target...
Building: checking cached actions
[0 / 3] [-----] Expanding template tensorflow/lite/toco/python/toco_from_protos.temp
[26 / 42] Executing genrule @snappy//:snappy_stubs_public_h; 0s local ... (2 actions, 1 running)
ERROR: C:/users/user/_bazel_user/biuqouag/external/protobuf_archive/BUILD:388:1: Linking of rule '@protobuf_archive//:protoc' failed (Exit 1181): link.exe failed: error executing command
cd C:/users/user/_bazel_user/biuqouag/execroot/org_tensorflow
SET LIB=C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\LIB;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\ATLMFC\LIB;C:\Program Files (x86)\Windows Kits\10\lib\10.0.10240.0\ucrt\x86;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.6.1\lib\um\x86;C:\Program Files (x86)\Windows Kits\8.1\lib\winv6.3\um\x86;
SET PATH=C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft SDKs\F#\4.0\Framework\v4.0\;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools;C:\Windows\Microsoft.NET\Framework\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Team Tools\Performance Tools;C:\Program Files (x86)\Windows Kits\8.1\bin\x86;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools\;;C:\Windows\system32
SET PWD=/proc/self/cwd
SET PYTHON_BIN_PATH=c:/Python36/python.exe
SET PYTHON_LIB_PATH=c:/Python36/lib/site-packages
SET TEMP=C:\Users\USER\AppData\Local\Temp
SET TF_CONFIGURE_IOS=0
SET TF_DOWNLOAD_CLANG=0
SET TF_NEED_CUDA=0
SET TF_NEED_OPENCL_SYCL=0
SET TF_NEED_ROCM=0
SET TMP=C:\Users\USER\AppData\Local\Temp
C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/link.exe /nologo /OUT:bazel-out/x64_windows-opt/bin/external/protobuf_archive/protoc.exe /SUBSYSTEM:CONSOLE -ignore:4221 -ignore:4221 -DEFAULTLIB:kernel32.lib -ignore:4221 -ignore:4221 /MACHINE:X64 @bazel-out/x64_windows-opt/bin/external/protobuf_archive/protoc.exe-2.params /OPT:ICF /OPT:REF
Execution platform: @bazel_tools//platforms:host_platform
LINK : fatal error LNK1181: cannot open input file 'setargv.obj'
Target //tensorflow/tools/pip_package:build_pip_package failed to build
INFO: Elapsed time: 31.468s, Critical Path: 0.60s
INFO: 0 processes.
FAILED: Build did NOT complete successfully
FAILED: Build did NOT complete successfully
Somehow Bazel still uses the 32-bit libraries. See those x86 directories in the library path:
SET LIB=(...);C:\Program Files (x86)\Windows Kits\10\lib\10.0.10240.0\ucrt\x86;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.6.1\lib\um\x86;C:\Program Files (x86)\Windows Kits\8.1\lib\winv6.3\um\x86;
set command? (This will list every environment variable in that Command Prompt. Before you copy-paste the set command's output here, make sure to remove stuff you think is sensitive.)all the files exists
I started the cmd from the start menu
I didn't run any tools before I installed the visual 2015 english version then I set it as it is mention in this link https://docs.bazel.build/versions/master/windows.html#build-c then I repeated the other instructions from:
this_ is the output of the set command:
c:\src\tensorflow\tensorflow>set
ALLUSERSPROFILE=C:\ProgramData
APPDATA=C:\Users\USER\AppData\Roaming
CommonProgramFiles=C:\Program Files\Common Files
CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
CommonProgramW6432=C:\Program Files\Common Files
COMPUTERNAME=DESKTOP-A0IEOIJ
ComSpec=C:\Windows\system32\cmd.exe
FPS_BROWSER_APP_PROFILE_STRING=Internet Explorer
FPS_BROWSER_USER_PROFILE_STRING=Default
HOMEDRIVE=C:
HOMEPATH=\Users\USER
JAVA_HOME=C:\Program Files\Java\jdk1.8.0_211
LOCALAPPDATA=C:\Users\USER\AppData\Local
LOGONSERVER=\\DESKTOP-A0IEOIJ
MOZ_PLUGIN_PATH=C:\Program Files (x86)\Foxit Software\Foxit Reader\plugins\
MSMPI_BIN=C:\Program Files\Microsoft MPI\Bin\
NUMBER_OF_PROCESSORS=4
OneDrive=C:\Users\USER\OneDrive
OS=Windows_NT
Path=C:\Program Files\Microsoft MPI\Bin\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Git\cmd;C:\MinGW\bin;C:\Qt\Qt5.4.1\Tools\QtCreator\bin;C:\Qt\Qt5.4.1\5.4\mingw491_32\bin;C:\Qt\Qt5.4.1\Tools\mingw491_32\bin;C:\OpenCV-2.4.9\release\bin;C:\Qt\Qt5.4.1\Tools\QtCreator\bin;C:\Program Files\Java\jdk-12.0.1\bin;C:\Program Files\Java\jdk1.8.0_211\bin;C:\Program Files\Java\jre1.8.0_211\bin;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Python36\Scripts\;C:\Python36\
PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
PROCESSOR_ARCHITECTURE=AMD64
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 69 Stepping 1, GenuineIntel
PROCESSOR_LEVEL=6
PROCESSOR_REVISION=4501
ProgramData=C:\ProgramData
ProgramFiles=C:\Program Files
ProgramFiles(x86)=C:\Program Files (x86)
ProgramW6432=C:\Program Files
PROMPT=$P$G
PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
PUBLIC=C:\Users\Public
SESSIONNAME=Console
SystemDrive=C:
SystemRoot=C:\Windows
TEMP=C:\Users\USER\AppData\Local\Temp
TMP=C:\Users\USER\AppData\Local\Temp
USERDOMAIN=DESKTOP-A0IEOIJ
USERDOMAIN_ROAMINGPROFILE=DESKTOP-A0IEOIJ
USERNAME=USER
USERPROFILE=C:\Users\USER
VBOX_MSI_INSTALL_PATH=C:\Program Files\Oracle\VirtualBox\
VS140COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\
windir=C:\Windows
hello there I searched but I can't find anything any suggestions PLEASE IIT4S REALLY AN EMERGENCY CASE THANK YOU FOR ADVANCED
Nothings wrong stands out with the envvars.
But I also found something fishy with LIBPATH on my machine. Let me investigate.
Please run these commands in cmd.exe and paste here the output:
"c:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"
set lib
In another cmd.exe window, please run:
set BAZEL_VC=c:\Program Files (x86)\Microsoft Visual Studio 14.0\VC
and then run Bazel as you normally do, and let me know if the build fails again and what's the output.
thank you for replying, the output of
"c:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"
set lib is :
LIB=C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\LIB;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\ATLMFC\LIB;C:\Program Files (x86)\Windows Kits\10\lib\10.0.10240.0\ucrt\x86;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.6.1\lib\um\x86;C:\Program Files (x86)\Windows Kits\8.1\lib\winv6.3\um\x86;
LIBPATH=C:\Windows\Microsoft.NET\Framework\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\LIB;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\ATLMFC\LIB;C:\Program Files (x86)\Windows Kits\8.1\References\CommonConfiguration\Neutral;\Microsoft.VCLibs\14.0\References\CommonConfiguration\neutral;
Thanks. That looks OK.
In another cmd.exe window, please run:
set BAZEL_VC=c:\Program Files (x86)\Microsoft Visual Studio 14.0\VCand then run Bazel as you normally do, and let me know if the build fails again and what's the output.
What about this one?
Microsoft Windows [version 10.0.10240]
(c) 2015 Microsoft Corporation. Tous droits réservés.
C:\Users\USER>set BAZEL_VC=c:\Program Files (x86)\Microsoft Visual Studio 14.0\VC
C:\Users\USER>cd /D c:\src\tensorflow\tensorflow
c:\src\tensorflow\tensorflow>
c:\src\tensorflow\tensorflow>c:\Python36\python.exe configure.py
WARNING: Running Bazel server needs to be killed, because the startup options are different.
WARNING: --batch mode is deprecated. Please instead explicitly shut down your Bazel server using the command "bazel shutdown".
You have bazel 0.24.1 installed.
Please specify the location of python. [Default is c:\Python36\python.exe]:
Found possible Python library paths:
c:\Python36\lib\site-packages
Please input the desired Python library path to use. Default is [c:\Python36\lib\site-packages]
Do you wish to build TensorFlow with XLA JIT support? [y/N]: N
No XLA JIT support will be enabled for TensorFlow.
Do you wish to build TensorFlow with ROCm support? [y/N]: N
No ROCm support will be enabled for TensorFlow.
Do you wish to build TensorFlow with CUDA support? [y/N]: N
No CUDA support will be enabled for TensorFlow.
Please specify optimization flags to use during compilation when bazel option "--config=opt" is specified [Default is /arch:AVX]:
Would you like to override eigen strong inline for some C++ compilation to reduce the compilation time? [Y/n]: n
Not overriding eigen strong inline, some compilations could take more than 20 mins.
Preconfigured Bazel build configs. You can use any of the below by adding "--config=<>" to your build command. See .bazelrc for more details.
--config=mkl # Build with MKL support.
--config=monolithic # Config for mostly static monolithic build.
--config=gdr # Build with GDR support.
--config=verbs # Build with libverbs support.
--config=ngraph # Build with Intel nGraph support.
--config=numa # Build with NUMA support.
--config=dynamic_kernels # (Experimental) Build kernels into separate shared objects.
Preconfigured Bazel build configs to DISABLE default on features:
--config=noaws # Disable AWS S3 filesystem support.
--config=nogcp # Disable GCP support.
--config=nohdfs # Disable HDFS support.
--config=noignite # Disable Apache Ignite support.
--config=nokafka # Disable Apache Kafka support.
--config=nonccl # Disable NVIDIA NCCL support.
c:\src\tensorflow\tensorflow>c:\bazel\0.24.1\bazel.exe build --config=opt //tensorflow/tools/pip_package:build_pip_package
Starting local Bazel server and connecting to it...
Loading:
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
currently loading: tensorflow/tools/pip_package
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (1 packages loaded, 0 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (22 packages loaded, 21 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (63 packages loaded, 21 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (71 packages loaded, 62 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (98 packages loaded, 83 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (119 packages loaded, 84 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (151 packages loaded, 126 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (155 packages loaded, 934 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (199 packages loaded, 2873 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (254 packages loaded, 3978 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (312 packages loaded, 5868 targets configured)
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (340 packages loaded, 9909 targets configured)
WARNING: C:/src/tensorflow/tensorflow/tensorflow/python/BUILD:3438:1: in py_library rule //tensorflow/python:standard_ops: target '//tensorflow/python:standard_ops' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of tf.distributions to tfp.distributions.
WARNING: C:/src/tensorflow/tensorflow/tensorflow/contrib/metrics/BUILD:16:1: in py_library rule //tensorflow/contrib/metrics:metrics_py: target '//tensorflow/contrib/metrics:metrics_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of tf.distributions to tfp.distributions.
WARNING: C:/src/tensorflow/tensorflow/tensorflow/python/BUILD:102:1: in py_library rule //tensorflow/python:no_contrib: target '//tensorflow/python:no_contrib' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of tf.distributions to tfp.distributions.
WARNING: C:/src/tensorflow/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:exporter': No longer supported. Switch to SavedModel immediately.
Analyzing: target //tensorflow/tools/pip_package:build_pip_package (359 packages loaded, 14446 targets configured)
WARNING: C:/src/tensorflow/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:gc': No longer supported. Switch to SavedModel immediately.
WARNING: C:/src/tensorflow/tensorflow/tensorflow/contrib/bayesflow/BUILD:17:1: in py_library rule //tensorflow/contrib/bayesflow:bayesflow_py: target '//tensorflow/contrib/bayesflow:bayesflow_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of tf.contrib.distributions to tfp.distributions.
WARNING: C:/src/tensorflow/tensorflow/tensorflow/contrib/BUILD:13:1: in py_library rule //tensorflow/contrib:contrib_py: target '//tensorflow/contrib:contrib_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of tf.contrib.distributions to tfp.distributions.
INFO: Analysed target //tensorflow/tools/pip_package:build_pip_package (359 packages loaded, 14515 targets configured).
INFO: Found 1 target...
Building: checking cached actions
[0 / 1] [-----] BazelWorkspaceStatusAction stable-status.txt
[36 / 188] Compiling external/protobuf_archive/src/google/protobuf/compiler/python/python_generator.cc; 3s local ... (4 actions running)
[36 / 188] Compiling external/protobuf_archive/src/google/protobuf/compiler/python/python_generator.cc; 11s local ... (4 actions running)
[42 / 188] Compiling external/protobuf_archive/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc; 6s local ... (4 actions, 3 running)
[49 / 188] Compiling external/protobuf_archive/src/google/protobuf/compiler/csharp/csharp_map_field.cc; 3s local ... (4 actions, 3 running)
[53 / 188] Compiling external/protobuf_archive/src/google/protobuf/compiler/cpp/cpp_helpers.cc; 11s local ... (4 actions, 3 running)
[61 / 188] Compiling external/protobuf_archive/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc; 6s local ... (4 actions, 3 running)
[70 / 188] Compiling external/protobuf_archive/src/google/protobuf/compiler/java/java_message_builder_lite.cc; 6s local ... (4 actions, 3 running)
[76 / 188] Compiling external/protobuf_archive/src/google/protobuf/compiler/js/js_generator.cc; 16s local ... (4 actions running)
[86 / 188] Compiling external/protobuf_archive/src/google/protobuf/compiler/java/java_message_lite.cc; 7s local ... (4 actions running)
[100 / 188] Compiling external/protobuf_archive/src/google/protobuf/compiler/php/php_generator.cc; 4s local ... (4 actions running)
[109 / 188] Compiling external/protobuf_archive/src/google/protobuf/compiler/cpp/cpp_message.cc; 14s local ... (4 actions running)
INFO: From Compiling external/com_google_absl/absl/synchronization/internal/graphcycles.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/base/internal/low_level_alloc.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/container/internal/hashtablez_sampler_force_weak_definition.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/container/internal/hashtablez_sampler.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
[140 / 226] Compiling external/jpeg/jcomapi.c; 0s local ... (4 actions running)
INFO: From Compiling external/com_google_absl/absl/base/internal/throw_delegate.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/debugging/internal/address_is_readable.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/debugging/internal/elf_mem_image.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/numeric/int128.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/debugging/internal/vdso_support.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/types/bad_optional_access.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/debugging/symbolize.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/match.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/ascii.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/str_split.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/escaping.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/internal/charconv_bigint.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/str_replace.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/internal/charconv_parse.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/string_view.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/str_cat.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/numbers.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/substitute.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/internal/memutil.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/charconv.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
[247 / 429] Compiling external/protobuf_archive/src/google/protobuf/repeated_field.cc; 3s local ... (4 actions running)
INFO: From Compiling external/com_google_absl/absl/debugging/stacktrace.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/base/dynamic_annotations.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/time/format.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/time/civil_time.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/time/clock.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/time/duration.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/time/time.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/synchronization/internal/create_thread_identity.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/synchronization/internal/waiter.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/synchronization/notification.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/synchronization/internal/per_thread_sem.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/synchronization/blocking_counter.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/synchronization/barrier.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/synchronization/mutex.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
[309 / 500] Compiling external/protobuf_archive/src/google/protobuf/dynamic_message.cc; 5s local ... (4 actions running)
[345 / 536] Compiling external/protobuf_archive/src/google/protobuf/util/internal/protostream_objectwriter.cc; 3s local ... (4 actions running)
INFO: From Compiling external/com_google_absl/absl/strings/internal/utf8.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/strings/internal/ostringstream.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/base/internal/cycleclock.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/base/internal/raw_logging.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/base/internal/spinlock.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/base/internal/unscaledcycleclock.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/base/internal/thread_identity.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/base/log_severity.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/base/internal/sysinfo.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/debugging/internal/demangle.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/hash/internal/city.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From Compiling external/com_google_absl/absl/base/internal/spinlock_wait.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
[436 / 876] Compiling external/nasm/x86/insnsa.c; 0s local ... (4 actions running)
INFO: From Compiling external/com_google_absl/absl/types/bad_variant_access.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From ProtoCompile tensorflow/core/protobuf/autotuning.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/saver.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/stream_executor/dnn.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/conv_autotuning.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/grappler/costs/op_performance_data.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From Compiling external/com_google_absl/absl/hash/internal/hash.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From ProtoCompile tensorflow/core/protobuf/tensor_bundle.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/util/memmapped_file_system.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/tensorflow_server.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/named_tensor.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/util/saved_tensor_slice.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/attr_value.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/queue_runner.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/device_properties.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/rewriter_config.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/cluster.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/tensor_slice.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/debug.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/types.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/saved_model.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From Compiling external/com_google_absl/absl/container/internal/raw_hash_set.cc:
cl : Command line warning D9025 : overriding '/w' with '/W3'
INFO: From ProtoCompile tensorflow/core/framework/variable.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/tensor_description.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/summary.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/cost_graph.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/resource_handle.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/tensor.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/device_attributes.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/example/example_parser_configuration.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/tensor_shape.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/remote_fused_graph_execute_info.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/log_memory.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/versions.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/step_stats.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/example/feature.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/graph_transfer_info.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/op_def.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/api_def.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/allocation_description.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/node_def.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/lib/core/error_codes.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/example/example.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/kernel_def.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/graph.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/reader_base.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/framework/function.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/graph_debug_info.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/control_flow.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/config.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/saved_object_graph.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/meta_graph.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/trace_events.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/trackable_object_graph.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/transport_options.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
[641 / 936] Executing genrule @jpeg//:simd_win_x86_64_assemble; 9s local ... (4 actions, 3 running)
INFO: From ProtoCompile tensorflow/core/protobuf/verifier_config.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/util/event.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/util/test_log.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/struct.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
[680 / 936] [Sched] Linking tensorflow/stream_executor/dnn_proto_cc_impl.lib; 59s ... (3 actions, 2 running)
INFO: From Compiling tensorflow/core/lib/core/status.cc:
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(200): warning C4244: 'initializing': conversion from 'google::protobuf::uint64' to 'int', possible loss of data
tensorflow/core/lib/core/status.cc(194): note: see reference to function template instantiation 'std::pair
tensorflow/core/lib/core/status.cc(194): note: see reference to function template instantiation 'std::pair
[742 / 937] [Sched] Linking tensorflow/core/feature_util.lib; 31s ... (4 actions, 2 running)
[804 / 937] Compiling tensorflow/core/protobuf/rewriter_config.pb_text.cc; 12s local ... (4 actions running)
INFO: From Compiling tensorflow/core/framework/model.cc:
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\memory(901): warning C4244: 'argument': conversion from 'const double' to 'tensorflow::int64', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\memory(971): note: see reference to function template instantiation 'std::_Ref_count_obj<_Ty>::_Ref_count_obj
[
_Ty=tensorflow::data::model::anonymous-namespace'::KnownRatio
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\memory(971): note: see reference to function template instantiation 'std::_Ref_count_obj<_Ty>::_Ref_count_obj<tensorflow::data::model::Node::Args,const double&>(tensorflow::data::model::Node::Args &&,const double &)' being compiled
with
[
_Ty=tensorflow::data::model::anonymous-namespace'::KnownRatio
]
tensorflow/core/framework/model.cc(176): note: see reference to function template instantiation 'std::shared_ptr
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\memory(901): warning C4244: 'argument': conversion from 'double' to 'tensorflow::int64', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\memory(971): note: see reference to function template instantiation 'std::_Ref_count_obj<_Ty>::_Ref_count_obj
[
_Ty=tensorflow::data::model::anonymous-namespace'::KnownRatio
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\memory(971): note: see reference to function template instantiation 'std::_Ref_count_obj<_Ty>::_Ref_count_obj<tensorflow::data::model::Node::Args,double&>(tensorflow::data::model::Node::Args &&,double &)' being compiled
with
[
_Ty=tensorflow::data::model::anonymous-namespace'::KnownRatio
]
tensorflow/core/framework/model.cc(339): note: see reference to function template instantiation 'std::shared_ptr
[844 / 937] Compiling tensorflow/core/util/guarded_philox_random.cc; 10s local ... (4 actions, 2 running)
[875 / 937] [Sched] Linking tensorflow/core/op_gen_lib.lib; 120s ... (4 actions, 3 running)
INFO: From Compiling tensorflow/core/util/stat_summarizer.cc:
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(172): warning C4244: 'initializing': conversion from 'double' to 'tensorflow::int64', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair
with
[
_Kty=std::string,
_Ty=tensorflow::StatsCalculator::Detail,
_Other1=double,
_Other2=const std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair
with
[
_Kty=std::string,
_Ty=tensorflow::StatsCalculator::Detail,
_Other1=double,
_Other2=const std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Ty>::construct<_Objty,double,const std::pair
with
[
_Ty=std::pair
_Objty=std::pair
_Kty=std::string
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Ty>::construct<_Objty,double,const std::pair
with
[
_Ty=std::pair
_Objty=std::pair
_Kty=std::string
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(996): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,double,const std::pair
with
[
_Alloc=std::allocator
_Ty=std::pair
_Kty=std::string,
_Objty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(995): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,double,const std::pair
with
[
_Alloc=std::allocator
_Ty=std::pair
_Kty=std::string,
_Objty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vector(930): note: see reference to function template instantiation 'void std::_Wrap_alloc
with
[
_Ty=std::pair
_Kty=std::string
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vector(929): note: see reference to function template instantiation 'void std::_Wrap_alloc
with
[
_Ty=std::pair
_Kty=std::string
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\queue(393): note: see reference to function template instantiation 'void std::vector<_Ty,std::allocator<_Ty>>::emplace_back
with
[
_Ty=std::pair
_Kty=std::string
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\queue(393): note: see reference to function template instantiation 'void std::vector<_Ty,std::allocator<_Ty>>::emplace_back
with
[
_Ty=std::pair
_Kty=std::string
]
tensorflow/core/util/stat_summarizer.cc(223): note: see reference to function template instantiation 'void std::priority_queue
with
[
_Kty=std::string,
_Ty=tensorflow::StatsCalculator::Detail,
HighPrecisionValueType=double
]
tensorflow/core/util/stat_summarizer.cc(223): note: see reference to function template instantiation 'void std::priority_queue
with
[
_Kty=std::string,
_Ty=tensorflow::StatsCalculator::Detail,
HighPrecisionValueType=double
]
[911 / 937] Compiling tensorflow/core/util/batch_util.cc; 59s local ... (4 actions, 3 running)
INFO: From Compiling tensorflow/core/util/tensor_slice_reader.cc:
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(200): warning C4244: 'initializing': conversion from 'google::protobuf::uint64' to 'int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair
with
[
_Kty=std::string,
_Ty=int
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair
with
[
_Kty=std::string,
_Ty=int
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Other>::construct<_Objty,_Ty>(_Objty *,_Ty &&)' being compiled
with
[
_Other=std::_List_node
_Objty=std::pair
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Other>::construct<_Objty,_Ty>(_Objty *,_Ty &&)' being compiled
with
[
_Other=std::_List_node
_Objty=std::pair
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(996): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,std::pair
with
[
_Alloc=std::allocator
_Ty=std::pair
_Other=std::_List_node
_Objty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(995): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,std::pair
with
[
_Alloc=std::allocator
_Ty=std::pair
_Other=std::_List_node
_Objty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\list(837): note: see reference to function template instantiation 'void std::_Wrap_alloc
with
[
_Other=std::_List_node
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\list(835): note: see reference to function template instantiation 'void std::_Wrap_alloc
with
[
_Other=std::_List_node
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\list(1065): note: see reference to function template instantiation 'std::_List_node
with
[
_Kty=std::string,
_Ty=int,
_Alloc=std::allocator
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\list(1064): note: see reference to function template instantiation 'std::_List_node
with
[
_Kty=std::string,
_Ty=int,
_Alloc=std::allocator
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\list(1037): note: see reference to function template instantiation 'void std::list
with
[
_Kty=std::string,
_Ty=int
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\list(1037): note: see reference to function template instantiation 'void std::list
with
[
_Kty=std::string,
_Ty=int
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xhash(254): note: see reference to function template instantiation 'void std::list
with
[
_Kty=std::string,
_Ty=int
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xhash(254): note: see reference to function template instantiation 'void std::list
with
[
_Kty=std::string,
_Ty=int
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(252): note: see reference to function template instantiation 'std::pair
with
[
_Kty=std::string,
_Ty=int,
_Hasher=std::hash
_Keyeq=std::equal_to
_Alloc=std::allocator
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(252): note: see reference to function template instantiation 'std::pair
with
[
_Kty=std::string,
_Ty=int,
_Hasher=std::hash
_Keyeq=std::equal_to
_Alloc=std::allocator
]
tensorflow/core/util/tensor_slice_reader.cc(130): note: see reference to function template instantiation 'std::pair
with
[
_Kty=std::string,
_Ty=int,
_Valty=std::pair
]
tensorflow/core/util/tensor_slice_reader.cc(130): note: see reference to function template instantiation 'std::pair
with
[
_Kty=std::string,
_Ty=int,
_Valty=std::pair
]
[920 / 937] Compiling tensorflow/core/util/batch_util.cc; 212s local ... (4 actions running)
INFO: From ProtoCompile tensorflow/core/protobuf/master.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/python/framework/cpp_shape_inference.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
[977 / 1,001] DefParser tensorflow/compiler/tf2xla/ops/_xla_ops.so.gen.def; 18s local ... (4 actions, 2 running)
INFO: From Linking tensorflow/python/gen_boosted_trees_ops_py_wrappers_cc.exe:
Creating library bazel-out/x64_windows-opt/bin/tensorflow/python/gen_boosted_trees_ops_py_wrappers_cc.lib and object bazel-out/x64_windows-opt/bin/tensorflow/python/gen_boosted_trees_ops_py_wrappers_cc.exp
INFO: From Linking tensorflow/python/gen_clustering_ops_py_wrappers_cc.exe:
Creating library bazel-out/x64_windows-opt/bin/tensorflow/python/gen_clustering_ops_py_wrappers_cc.lib and object bazel-out/x64_windows-opt/bin/tensorflow/python/gen_clustering_ops_py_wrappers_cc.exp
INFO: From Linking tensorflow/python/gen_test_ops_py_wrappers_cc.exe:
Creating library bazel-out/x64_windows-opt/bin/tensorflow/python/gen_test_ops_py_wrappers_cc.lib and object bazel-out/x64_windows-opt/bin/tensorflow/python/gen_test_ops_py_wrappers_cc.exp
test_ops_kernels.lo.lib(test_ops.obj) : warning LNK4217: locally defined symbol ?DEVICE_CPU@tensorflow@@3QEBDEB (char const * const tensorflow::DEVICE_CPU) imported in function "void __cdecl tensorflow::dynamic initializer for 'registrar__body__111__object''(void)" (??__Eregistrar__body__111__object@tensorflow@@YAXXZ)
test_ops_kernels.lo.lib(test_ops.obj) : warning LNK4217: locally defined symbol ?DEVICE_GPU@tensorflow@@3QEBDEB (char const * const tensorflow::DEVICE_GPU) imported in function "void __cdecl tensorflow::dynamic initializer for 'registrar__body__112__object''(void)" (??__Eregistrar__body__112__object@tensorflow@@YAXXZ)
INFO: From ProtoCompile tensorflow/core/profiler/profiler_service.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/profiler/profiler_analysis.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/kernels/boosted_trees/boosted_trees.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/profiler/tfprof_output.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/profiler/op_profile.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/profiler/profile.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/profiler/tfprof_options.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/profiler/tfprof_log.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/debug/debugger_event_metadata.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/debug/debug_service.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/eager_service.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/replay_log.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
tensorflow/core/protobuf/replay_log.proto: warning: Import tensorflow/core/protobuf/cluster.proto but not used.
tensorflow/core/protobuf/replay_log.proto: warning: Import tensorflow/core/framework/graph.proto but not used.
INFO: From ProtoCompile tensorflow/core/protobuf/tpu/optimization_parameters.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/worker.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/tpu/tpu_embedding_output_layout.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/protobuf/tpu/tpu_embedding_configuration.pb.h:
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From Compiling tensorflow/core/kernels/dynamic_stitch_op.cc:
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\type_traits(1376): warning C4244: 'argument': conversion from 'std::streamsize' to 'int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\type_traits(1444): note: see reference to function template instantiation 'void std::_Invoker_functor::_Call<_Fx&,_Ty,_Ty>(_Callable,_Ty &&,_Ty &&)' being compiled
with
[
_Fx=tensorflow::DynamicStitchOpImplCPU
_Ty=std::streamsize,
_Callable=tensorflow::DynamicStitchOpImplCPU
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\type_traits(1461): note: see reference to function template instantiation 'void std::invoke<_Fx&,_Ty,_Ty>(_Callable,_Ty &&,_Ty &&)' being compiled
with
[
_Fx=tensorflow::DynamicStitchOpImplCPU
_Ty=std::streamsize,
_Callable=tensorflow::DynamicStitchOpImplCPU
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(213): note: see reference to function template instantiation 'void std::_Invoke_ret<_Rx,_Callable&,_Ty,_Ty>(std::_Forced<_Rx,true>,_Callable &,_Ty &&,_Ty &&)' being compiled
with
[
_Rx=void,
_Callable=_Decayed,
_Ty=std::streamsize
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(211): note: while compiling class template member function 'void std::_Func_impl<_Decayed,_Alloc,_Ret,tensorflow::int64,tensorflow::int64>::_Do_call(tensorflow::int64 &&,tensorflow::int64 &&)'
with
[
_Alloc=std::allocator
_Ret=void
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(137): note: see reference to class template instantiation 'std::_Func_impl<_Decayed,_Alloc,_Ret,tensorflow::int64,tensorflow::int64>' being compiled
with
[
_Alloc=std::allocator
_Ret=void
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(348): note: see reference to class template instantiation 'std::_Is_large<_Myimpl>' being compiled
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(327): note: see reference to function template instantiation 'void std::_Func_class<_Ret,tensorflow::int64,tensorflow::int64>::_Reset_alloc<_Ty,std::allocator
with
[
_Ret=void,
_Ty=tensorflow::DynamicStitchOpImplCPU
_Fx=tensorflow::DynamicStitchOpImplCPU
_Alloc=std::allocator
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(327): note: see reference to function template instantiation 'void std::_Func_class<_Ret,tensorflow::int64,tensorflow::int64>::_Reset_alloc<_Ty,std::allocator
with
[
_Ret=void,
_Ty=tensorflow::DynamicStitchOpImplCPU
_Fx=tensorflow::DynamicStitchOpImplCPU
_Alloc=std::allocator
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(498): note: see reference to function template instantiation 'void std::_Func_class<_Ret,tensorflow::int64,tensorflow::int64>::_Reset
with
[
_Ret=void,
T=tensorflow::qint32,
_Fx=tensorflow::DynamicStitchOpImplCPU
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(498): note: see reference to function template instantiation 'void std::_Func_class<_Ret,tensorflow::int64,tensorflow::int64>::_Reset
with
[
_Ret=void,
T=tensorflow::qint32,
_Fx=tensorflow::DynamicStitchOpImplCPU
]
tensorflow/core/kernels/dynamic_stitch_op.cc(304): note: see reference to function template instantiation 'std::function
with
[
T=tensorflow::qint32,
_Fx=tensorflow::DynamicStitchOpImplCPU
]
tensorflow/core/kernels/dynamic_stitch_op.cc(303): note: see reference to function template instantiation 'std::function
with
[
T=tensorflow::qint32,
_Fx=tensorflow::DynamicStitchOpImplCPU
]
tensorflow/core/kernels/dynamic_stitch_op.cc(235): note: while compiling class template member function 'void tensorflow::DynamicStitchOpImplCPU
with
[
T=tensorflow::qint32
]
tensorflow/core/kernels/dynamic_stitch_op.cc(324): note: see reference to class template instantiation 'tensorflow::DynamicStitchOpImplCPU
with
[
T=tensorflow::qint32
]
tensorflow/core/kernels/dynamic_stitch_op.cc(342): note: see reference to class template instantiation 'tensorflow::ParallelDynamicStitchOpCPU
[1,207 / 1,273] Compiling tensorflow/core/kernels/tensor_array.cc; 32s local ... (4 actions, 3 running)
INFO: From Compiling tensorflow/core/kernels/boosted_trees/resources.cc:
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Ty>::construct<_Objty,double>(_Objty *,double &&)' being compiled
with
[
_Ty=float,
_Objty=float
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Ty>::construct<_Objty,double>(_Objty *,double &&)' being compiled
with
[
_Ty=float,
_Objty=float
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(996): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,double>(std::allocator<_Ty> &,_Objty *,double &&)' being compiled
with
[
_Alloc=std::allocator
_Ty=float,
_Objty=float
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(995): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,double>(std::allocator<_Ty> &,_Objty *,double &&)' being compiled
with
[
_Alloc=std::allocator
_Ty=float,
_Objty=float
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vector(930): note: see reference to function template instantiation 'void std::_Wrap_alloc
with
[
_Ty=float
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\vector(929): note: see reference to function template instantiation 'void std::_Wrap_alloc
with
[
_Ty=float
]
tensorflow/core/kernels/boosted_trees/resources.cc(443): note: see reference to function template instantiation 'void std::vector
with
[
_Ty=float
]
tensorflow/core/kernels/boosted_trees/resources.cc(443): note: see reference to function template instantiation 'void std::vector
with
[
_Ty=float
]
.\tensorflow/core/util/tensor_format.h(457): note: see reference to class template instantiation 'absl::Span
[1,317 / 1,384] Compiling tensorflow/core/kernels/save_restore_tensor.cc; 61s local ... (4 actions, 2 running)
[1,356 / 1,424] Compiling tensorflow/core/kernels/self_adjoint_eig_v2_op_complex64.cc; 95s local ... (4 actions, 3 running)
[1,365 / 1,433] Compiling tensorflow/core/kernels/svd_op_complex128.cc; 265s local ... (4 actions, 2 running)
[1,367 / 1,434] Compiling tensorflow/core/kernels/svd_op_complex128.cc; 607s local ... (2 actions running)
[1,451 / 1,524] [Sched] Linking tensorflow/core/kernels/batch_norm_op.lo.lib; 93s ... (3 actions, 2 running)
INFO: From Compiling tensorflow/core/common_runtime/process_function_library_runtime.cc:
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\memory(1630): warning C4244: 'argument': conversion from 'google::protobuf::uint64' to 'int', possible loss of data
tensorflow/core/common_runtime/process_function_library_runtime.cc(606): note: see reference to function template instantiation 'std::unique_ptr
with
[
_Ty=tensorflow::ProcessFunctionLibraryRuntime::MultiDeviceFunctionData,
T=tensorflow::DataType
]
.\tensorflow/core/util/tensor_format.h(457): note: see reference to class template instantiation 'absl::Span
INFO: From Compiling tensorflow/core/grappler/utils/functions.cc:
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(172): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
tensorflow/core/grappler/utils/functions.cc(364): note: see reference to function template instantiation 'std::pair
with
[
_Other1=int &,
_Other2=std::size_t
]
tensorflow/core/grappler/utils/functions.cc(364): note: see reference to function template instantiation 'std::pair
with
[
_Other1=int &,
_Other2=std::size_t
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtr1common(88): note: see reference to class template instantiation 'std::integral_constant
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtr1common(89): note: see reference to class template instantiation 'std::is_same<_Ty1,_Ty2>' being compiled
INFO: From Compiling tensorflow/core/kernels/scan_ops.cc:
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\type_traits(1376): warning C4244: 'argument': conversion from 'std::streamsize' to 'int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\type_traits(1444): note: see reference to function template instantiation 'StorageIndex std::_Invoker_functor::_Call
with
[
StorageIndex=int,
_Ty=std::streamsize,
_Callable=int (__cdecl *&)(int)
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\type_traits(1468): note: see reference to function template instantiation 'StorageIndex std::invoke
with
[
StorageIndex=int,
_Ty=std::streamsize,
_Callable=int (__cdecl *&)(int)
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(213): note: see reference to function template instantiation '_Rx std::_Invoke_ret<_Rx,StorageIndex(__cdecl *&)(StorageIndex),_Ty>(std::_Forced<_Rx,false>,StorageIndex (__cdecl *&)(StorageIndex),_Ty &&)' being compiled
with
[
_Rx=Eigen::Index,
StorageIndex=int,
_Ty=std::streamsize
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(211): note: while compiling class template member function 'Eigen::Index std::_Func_impl<_Decayed,_Alloc,_Ret,Eigen::Index>::_Do_call(Eigen::Index &&)'
with
[
_Alloc=std::allocator
_Ret=Eigen::Index
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(137): note: see reference to class template instantiation 'std::_Func_impl<_Decayed,_Alloc,_Ret,Eigen::Index>' being compiled
with
[
_Alloc=std::allocator
_Ret=Eigen::Index
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(348): note: see reference to class template instantiation 'std::_Is_large<_Myimpl>' being compiled
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(327): note: see reference to function template instantiation 'void std::_Func_class<_Ret,Eigen::Index>::_Reset_alloc
with
[
_Ret=Eigen::Index,
StorageIndex=int,
_Ty=int,
_Fx=int (__cdecl *)(int),
_Alloc=std::allocator
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(327): note: see reference to function template instantiation 'void std::_Func_class<_Ret,Eigen::Index>::_Reset_alloc
with
[
_Ret=Eigen::Index,
StorageIndex=int,
_Ty=int,
_Fx=int (__cdecl *)(int),
_Alloc=std::allocator
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(498): note: see reference to function template instantiation 'void std::_Func_class<_Ret,Eigen::Index>::_Reset
[
_Ret=Eigen::Index,
StorageIndex=int,
_Fx=int (__cdecl *)(int)
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\functional(498): note: see reference to function template instantiation 'void std::_Func_class<_Ret,Eigen::Index>::_Reset
[
_Ret=Eigen::Index,
StorageIndex=int,
_Fx=int (__cdecl *)(int)
]
c:\users\user_bazel_user\biuqouag\execroot\org_tensorflow\external\eigen_archive\unsupported\eigen\cxx11\src/Tensor/TensorExecutor.h(239): note: see reference to function template instantiation 'std::function
with
[
StorageIndex=int,
_Fx=int (__cdecl *)(int)
]
c:\users\user_bazel_user\biuqouag\execroot\org_tensorflow\external\eigen_archive\unsupported\eigen\cxx11\src/Tensor/TensorExecutor.h(235): note: see reference to function template instantiation 'std::function
with
[
StorageIndex=int,
_Fx=int (__cdecl *)(int)
]
c:\users\user_bazel_user\biuqouag\execroot\org_tensorflow\external\eigen_archive\unsupported\eigen\cxx11\src/Tensor/TensorExecutor.h(227): note: while compiling class template member function 'void Eigen::internal::TensorExecutor
with
[
DeviceType=tensorflow::CPUDevice,
Expression=const Assign
]
c:\users\user_bazel_user\biuqouag\execroot\org_tensorflow\external\eigen_archive\unsupported\eigen\cxx11\src/Tensor/TensorDevice.h(35): note: see reference to function template instantiation 'void Eigen::internal::TensorExecutor
with
[
DeviceType=tensorflow::CPUDevice,
Expression=const Assign
]
c:\users\user_bazel_user\biuqouag\execroot\org_tensorflow\external\eigen_archive\unsupported\eigen\cxx11\src/Tensor/TensorDevice.h(35): note: see reference to class template instantiation 'Eigen::internal::TensorExecutor
with
[
DeviceType=tensorflow::CPUDevice
]
.\tensorflow/core/kernels/scan_ops.h(39): note: see reference to function template instantiation 'Eigen::TensorDevice
with
[
Derived=Eigen::TensorMap
Device=tensorflow::CPUDevice,
T=const std::complex
OtherDerived=Eigen::TensorReverseOp
]
.\tensorflow/core/kernels/scan_ops.h(38): note: see reference to function template instantiation 'Eigen::TensorDevice
with
[
Derived=Eigen::TensorMap
Device=tensorflow::CPUDevice,
T=const std::complex
OtherDerived=Eigen::TensorReverseOp
]
.\tensorflow/core/kernels/scan_ops.h(31): note: while compiling class template member function 'void tensorflow::functor::Scan
with
[
Device=tensorflow::CPUDevice,
Reducer=Eigen::internal::ProdReducer
T=tensorflow::complex128,
IndexType=Eigen::DenseIndex
]
tensorflow/core/kernels/scan_ops.cc(82): note: see reference to function template instantiation 'void tensorflow::functor::Scan
with
[
Device=tensorflow::CPUDevice,
Reducer=Eigen::internal::ProdReducer
T=tensorflow::complex128,
IndexType=Eigen::DenseIndex
]
tensorflow/core/kernels/scan_ops.cc(82): note: see reference to class template instantiation 'tensorflow::functor::Scan
with
[
Device=tensorflow::CPUDevice,
Reducer=Eigen::internal::ProdReducer
T=tensorflow::complex128
]
tensorflow/core/kernels/scan_ops.cc(46): note: while compiling class template member function 'void tensorflow::ScanOp
tensorflow/core/kernels/scan_ops.cc(167): note: see reference to class template instantiation 'tensorflow::ScanOp
Most helpful comment
This error message only occurs when you try to run "./compile.sh" from a git checkout, not from the distribution archive.
When I download https://github.com/bazelbuild/bazel/releases/download/0.24.1/bazel-0.24.1-dist.zip I am able to build it without this error.
CCing @laszlocsomor to see if he has any suggestions.