You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Poking around this problem and I found the following:
a) Cygwin may not be in PATH. If it is, then running any test fails with something like
"C:/Cygwin/bin/link.exe" "-out:c:/temp\emscripten_temp\copy.cpp.native.exe" -defaultlib:libcmt -nologo C:/Users/clb/AppData/Local/Temp/copy-468025.o link: unknown option -- o
Try `/usr/bin/link --help' for more information.
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
After removing Cygwin from PATH, the failure message turns to
"link.exe" "-out:c:/temp\emscripten_temp\copy.cpp.native.exe" -defaultlib:libcmt -nologo C:/Users/clb/AppData/Local/Temp/copy-787633.o
clang++: error: unable to execute command: program not executable
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
which indicates that clang is trying to invoke the Visual C++ linker which it can't find. This can be solved by running the tests from VS2010 command prompt (and killing cygwin from PATH). After that, several of the tests succeed.
The tests benchmark.test_dlmalloc, benchmark.test_fasta_float and benchmark.test_skinning will still fail. Investigating the reason for those..
This issue has been automatically marked as stale because there has been no activity in the past 2 years. It will be closed automatically if no further activity occurs in the next 7 days. Feel free to re-open at any time if this issue is still relevant.
Running 'python tests/runner.py benchmark' on Windows gives the following error output:
The text was updated successfully, but these errors were encountered: