mheinsen / seec

Program visualization and debugging for novice C programmers
http://seec-team.github.io/seec/
MIT License
3 stars 0 forks source link

Easily configurable system header locations on Windows. #58

Closed mheinsen closed 7 years ago

mheinsen commented 8 years ago

Clang has different methods for finding system headers based on the environment used on Windows (e.g. mingw, msys, visual studio). At least for the case that we usually test with (mingw), we require PATH to be set correctly also (i.e. gcc.exe must be in the path, and the headers must be in the correct location relative to gcc.exe's location). Rather than require users to correctly setup their command line environment, and specify the correct target (if they are using something other than our expected default), it would be nice if these options and paths could be configured through the trace viewer's preferences.

mheinsen commented 8 years ago

There is more trouble here than first appears. To use the x86_64-windows-msvc target, SeeC must be updated to work correctly with MSVC's LINK. See #62.

mheinsen commented 7 years ago

This issue was moved to seec-team/seec#18