nnnunnn

Results 3 comments of nnnunnn

My [Windows fork](https://github.com/nnnunnn/occa) uses: **int _commit(int fd);** https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/commit?view=msvc-160 From [enable_msvc - occa/internal/io/utils.cpp line 471](https://github.com/nnnunnn/occa/blob/2c77f219935846be3c6dee7fdd3cea5e349644c9/src/occa/internal/io/utils.cpp#L471): ``` #if (OCCA_OS & (OCCA_LINUX_OS | OCCA_MACOS_OS)) fsync(fileno(fp)); #else _commit(fileno(fp)); // NBN: VC++ compiler #endif ```

@SFrijters wrote: > I tried adding more stuff from the '.cpp' to the headers, and it does seem to work in the sense that it changes the error message, but...

Hi mAch17, Preferred tools for Windows will be the (free) VC 2013 Community edition, http://www.visualstudio.com/en-us/news/vs2013-community-vs.aspx Project files will be available soon! Nigel