From 94ec6a833f0ae9b53ed6051da4e2e0382989218d Mon Sep 17 00:00:00 2001 From: Leonard Lee Date: Thu, 7 Jan 2016 14:00:00 +0100 Subject: [PATCH 1/3] Remove user specific project file. --- msvc/double-conversion.vcxproj.user | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 msvc/double-conversion.vcxproj.user diff --git a/msvc/double-conversion.vcxproj.user b/msvc/double-conversion.vcxproj.user deleted file mode 100644 index ef5ff2a1..00000000 --- a/msvc/double-conversion.vcxproj.user +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file From 0e47d5ac324c1d012e0dbbdf4f5d78d5fc3ad3cb Mon Sep 17 00:00:00 2001 From: Leonard Lee Date: Thu, 7 Jan 2016 14:10:15 +0100 Subject: [PATCH 2/3] Use correct file paths. --- msvc/double-conversion.vcxproj | 36 +++++++++++++------------- msvc/double-conversion.vcxproj.filters | 36 +++++++++++++------------- msvc/run_tests/run_tests.vcxproj | 8 +++--- 3 files changed, 40 insertions(+), 40 deletions(-) diff --git a/msvc/double-conversion.vcxproj b/msvc/double-conversion.vcxproj index 8bbe4da4..5616c8ad 100644 --- a/msvc/double-conversion.vcxproj +++ b/msvc/double-conversion.vcxproj @@ -147,26 +147,26 @@ - - - - - - - - + + + + + + + + - - - - - - - - - - + + + + + + + + + + diff --git a/msvc/double-conversion.vcxproj.filters b/msvc/double-conversion.vcxproj.filters index 5e401594..664a27f6 100644 --- a/msvc/double-conversion.vcxproj.filters +++ b/msvc/double-conversion.vcxproj.filters @@ -15,60 +15,60 @@ - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files diff --git a/msvc/run_tests/run_tests.vcxproj b/msvc/run_tests/run_tests.vcxproj index 8d49595e..cec3ade5 100644 --- a/msvc/run_tests/run_tests.vcxproj +++ b/msvc/run_tests/run_tests.vcxproj @@ -93,7 +93,7 @@ Disabled _SCL_SECURE_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) false - $(SolutionDir)..\src + $(SolutionDir).. Console @@ -107,7 +107,7 @@ Disabled _SCL_SECURE_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) false - $(SolutionDir)..\src + $(SolutionDir).. Console @@ -123,7 +123,7 @@ true _SCL_SECURE_NO_WARNINGS;WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) false - $(SolutionDir)..\src + $(SolutionDir).. Console @@ -141,7 +141,7 @@ true _SCL_SECURE_NO_WARNINGS;WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) false - $(SolutionDir)..\src + $(SolutionDir).. Console From ebbc6ce4425861184cba8f709f1d28f823595442 Mon Sep 17 00:00:00 2001 From: Leonard Lee Date: Thu, 7 Jan 2016 14:15:00 +0100 Subject: [PATCH 3/3] Fix error C1128 for x86 debug builds. The test\cctest\gay-precision.cc file will cause below error for Visual Studio 2013. `fatal error C1128: number of sections exceeded object file format limit : compile with /bigobj` --- msvc/run_tests/run_tests.vcxproj | 1 + 1 file changed, 1 insertion(+) diff --git a/msvc/run_tests/run_tests.vcxproj b/msvc/run_tests/run_tests.vcxproj index cec3ade5..05d2873f 100644 --- a/msvc/run_tests/run_tests.vcxproj +++ b/msvc/run_tests/run_tests.vcxproj @@ -94,6 +94,7 @@ _SCL_SECURE_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) false $(SolutionDir).. + /bigobj %(AdditionalOptions) Console