Guillaume Dumont

Results 31 comments of Guillaume Dumont

I had the same problem and the suggested fix solved the problem. I guess that an alternative solution would be to run the tests on a windows CI platform such...

There is a typo in the README you need to add your source directory at the end like so: ``` C:\Projects\caffe\build>cmake -G Ninja -C C:\Projects\caffe-builder\build\libraries\caffe-builder-config.cmake c:\path\to\src ```

@ilyes495 Looks like cygwin is causing you some trouble. Can you tell me what are the value for: CMAKE_RC_COMPILER CMAKE_CXX_COMPILER CMAKE_C_COMPILER in your CMakeCache.txt?

I only tested with VS2013. Your problem looks related to std::tuple. Look for any differences between VS2013 and VS2012 on MSDN. I had a problem with GTest in caffe and...

Boost actually succeeded. These are known issues, see the README.md. As for why caffe fails to find protobuf, can you confirm that you have the `protoc.exe` somewhere in your build...

I doubt it. CI has the same issue. Does the downloaded archive look alright? Maybe it is an upstream change? If the archive looks good. Maybe you can change the...

Replace amd64 with x86 in https://github.com/willyd/caffe-builder/blob/master/build_v120_x64.cmd#L9 and see how this goes.

I believe CMake will pick up the latest version by default so using CUDA 8.0 should work out of the box.

@asbe Can you echo the PATH after vcvarsall.bat has been called? Some people have had success by specifying the compiler path like so: -DCMAKE_C_COMPILER=cl.exe -DCMAKE_CXX_COMPILER=cl.exe

CMake found gcc.exe on your path. You need to it tell it to use cl.exe either by executing: ``` set CC=cl set CXX=cl ``` in a command prompt before you...