digitalmars.D - Issue running dmd tests
- Benjamin Thaut (7/7) Feb 03 2014 Previously I was able to run the dmd test suite on windows using msys.
- Benjamin Thaut (9/16) Feb 03 2014 I found the problem. If you do:
Previously I was able to run the dmd test suite on windows using msys. If I now run make within the dmd test folder I get: make[1]: *** No rule to make target `test_results/runnable/A16.d.out', needed by `run_runnable_tests'. Stop. I also tried using mingw32-make, same problem. Kind Regards Benjamin Thaut
Feb 03 2014
Am 03.02.2014 11:21, schrieb Benjamin Thaut:Previously I was able to run the dmd test suite on windows using msys. If I now run make within the dmd test folder I get: make[1]: *** No rule to make target `test_results/runnable/A16.d.out', needed by `run_runnable_tests'. Stop. I also tried using mingw32-make, same problem. Kind Regards Benjamin ThautI found the problem. If you do: make DMD=dmd.exe the makefile will fail. If you however do: make DMD=../dmd.exe or make DMD=/absolute/path/to/dmd.exe it will work. The makefile seems to be failing if the DMD variable isn't a path.
Feb 03 2014