mirror of https://github.com/AxioDL/tinyxml2.git
Merge pull request #108 from ddiproietto/patch-1
Fixed compilation under MINGW64
This commit is contained in:
commit
576003627c
|
@ -280,7 +280,12 @@ int main( int argc, const char ** argv )
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(_MSC_VER) || defined(MINGW32) || defined(__MINGW32__)
|
#if defined(_MSC_VER) || defined(MINGW32) || defined(__MINGW32__)
|
||||||
|
#if defined __MINGW64_VERSION_MAJOR && defined __MINGW64_VERSION_MINOR
|
||||||
|
//MINGW64: both 32 and 64-bit
|
||||||
|
mkdir( "resources/out/" );
|
||||||
|
#else
|
||||||
_mkdir( "resources/out/" );
|
_mkdir( "resources/out/" );
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
mkdir( "resources/out/", S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
|
mkdir( "resources/out/", S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue