Since these defines were added in LLVM SVN r189364 in 2013, mingw-w64 got defines for S_I?GRP, S_IRWXG, S_I?OTH and S_IRWXO in 2015.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
lldb/include/lldb/Host/windows/PosixApi.h | ||
---|---|---|
39 ↗ | (On Diff #221298) | Maybe move these into the defined(_MSC_VER) above? Or the other way? Seems they should be consistent. |
lldb/include/lldb/Host/windows/PosixApi.h | ||
---|---|---|
39 ↗ | (On Diff #221298) | I don't want to move them into the _MSC_VER ifdef above, as there are pretty recent mingw-w64 releases without these new defines as well (the new ones were only added in mingw-w64 v4), but I guess I could change the _MSC_VER ifdef to check for S_IRUSR instead. |