Changeset 936:2d2c88cfc74a for docker


Ignore:
Timestamp:
04/28/19 17:08:03 (5 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
Phase:
public
Message:

Programs are produced for the Windows subsysteam (re #347)

Location:
docker/msys
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • docker/msys/cefpython-66.0.patch

    r920 r936  
    77 # Project website: https://github.com/cztomczak/cefpython
    88 
    9 @@ -46,16 +46,18 @@
     9@@ -46,16 +46,19 @@
    1010 
    1111 # Compiler args
     
    2626+    #"/MANIFEST:NO",
    2727+    #"/LARGEADDRESSAWARE",
    28 +    "-fstack-protector-all"
     28+    "-fstack-protector-all",
     29+    "-Wl,--subsystem,windows"
    2930 ]
    3031 
  • docker/msys/py2exe.patch

    r920 r936  
    722722                SystemError(GetLastError(), "Could not lock script resource:");
    723723                return FALSE;
     724diff --git a/setup.py b/setup.py
     725index 342d194..1fe1e43 100644
     726--- a/setup.py
     727+++ b/setup.py
     728@@ -107,7 +107,7 @@ run_w = Interpreter("py2exe.run_w",
     729                     libraries=["user32", "shell32"],
     730                     define_macros=macros,
     731                     extra_compile_args=extra_compile_args,
     732-                    extra_link_args=extra_link_args,
     733+                    extra_link_args=extra_link_args + (["-Wl,--subsystem,windows"] if isMingw32 else []),
     734                     )
     735 
     736 # The py2exe.resources name is special handled in BuildInterpreters;
Note: See TracChangeset for help on using the changeset viewer.