瀏覽代碼

Fixed compilation under MINGW64

Necessary on mingw64 2.22
ddiproietto 13 年之前
父節點
當前提交
a8ae1f6a4d
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      xmltest.cpp

+ 6 - 1
xmltest.cpp

@@ -280,7 +280,12 @@ int main( int argc, const char ** argv )
 	#endif
 
 	#if defined(_MSC_VER) || defined(MINGW32) || defined(__MINGW32__)
-		_mkdir( "resources/out/" );
+		#if defined __MINGW64_VERSION_MAJOR && defined __MINGW64_VERSION_MINOR
+			//MINGW64: both 32 and 64-bit
+			mkdir( "resources/out/" );
+                #else
+                	_mkdir( "resources/out/" );
+                #endif
 	#else
 		mkdir( "resources/out/", S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
 	#endif