Previous 199869 Revisions Next

r30953 Thursday 12th June, 2014 at 09:40:49 UTC by Oliver Stöneberg
fixed -j compilation with VS2013 [Oliver Stöneberg]
[src/osd/windows]vconv.c

trunk/src/osd/windows/vconv.c
r30952r30953
348348   }
349349
350350   // identify the version number of the EXE
351   if (!icl_compile) exe_version = get_exe_version(executable);
352   else exe_version = 0x00110000; // assume this for ICL
351   if (!icl_compile)
352      exe_version = get_exe_version(executable);
353   else
354      exe_version = 0x00110000; // assume this for ICL
353355
354   // special case
355   if (!strcmp(executable, "cl.exe") && (exe_version >= 0x00070000))
356      dst += sprintf(dst, "/wd4025 ");
356   // special cases
357   if (!icl_compile && !strcmp(executable, "cl.exe")) {
358      if (exe_version >= 0x00070000)
359         dst += sprintf(dst, "/wd4025 ");
360      // fixes -j compiles with VS2013
361      if (exe_version >= 0x000C0000)
362         dst += sprintf(dst, "/FS ");
363   }
357364
358365   // iterate over parameters
359366   for (param = parampos; param < argc; param++)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team