mheinsen / seec

Program visualization and debugging for novice C programmers

Home Page:http://seec-team.github.io/seec/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hide terminal window when invoking dot.exe on MSW

mheinsen opened this issue · comments

Currently, each time dot.exe is invoked the terminal windows appears on MSW. This can be disabled by setting the correct flags for CreateProcess (CREATE_NO_WINDOW?), but this is not exposed by LLVM's llvm::sys::ExecuteAndWait() interface which we currently use. We'll need to create a separate path for MSW which directly calls CreateProcess, but it should be straightforward.