147cb6a2ae
3.5 release is needed for MSVC 14.0 (aka VS 2015) support. Python 3.5 removed build toolchain support for MSVC 2013. Because we still need to support it, we duplicate the Python directory in externals and copy old patches and dispatch to this directory for MSVC 2013. Once the support for MSVC 2013 is dropped on master, this directory can be removed again. Change-Id: Idf7bc351239582f583ecbdb53c923cbdcf968089 Reviewed-on: https://gerrit.libreoffice.org/17352 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
23 lines
992 B
Groff
23 lines
992 B
Groff
fdo#82430 disable SSE2 default of MSVC2012
|
|
|
|
--- python3/PCbuild/release.props.old 2014-10-01 23:47:33.348095403 +0200
|
|
+++ python3/PCbuild/release.props 2014-10-01 23:48:05.051092945 +0200
|
|
@@ -9,6 +9,7 @@
|
|
<ItemDefinitionGroup>
|
|
<ClCompile>
|
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
+ <EnableEnhancedInstructionSet>StreamingSIMDExtensions</EnableEnhancedInstructionSet>
|
|
</ClCompile>
|
|
</ItemDefinitionGroup>
|
|
<ItemGroup>
|
|
--- python3/PCbuild/make_buildinfo.c.orig 2014-11-03 00:48:58.841000000 +0100
|
|
+++ python3/PCbuild/make_buildinfo.c 2014-11-03 00:49:16.266200000 +0100
|
|
@@ -109,7 +109,7 @@
|
|
|
|
int main(int argc, char*argv[])
|
|
{
|
|
- char command[CMD_SIZE] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL ";
|
|
+ char command[CMD_SIZE] = "cl.exe -arch:SSE -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL ";
|
|
char tmppath[CMD_SIZE] = "";
|
|
int do_unlink, result;
|
|
char *tmpdir = NULL;
|