Changeset 936:2d2c88cfc74a for docker
- Timestamp:
- 04/28/19 17:08:03 (6 years ago)
- Branch:
- python3
- Phase:
- public
- Location:
- docker/msys
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
docker/msys/cefpython-66.0.patch
r920 r936 7 7 # Project website: https://github.com/cztomczak/cefpython 8 8 9 @@ -46,16 +46,1 8@@9 @@ -46,16 +46,19 @@ 10 10 11 11 # Compiler args … … 26 26 + #"/MANIFEST:NO", 27 27 + #"/LARGEADDRESSAWARE", 28 + "-fstack-protector-all" 28 + "-fstack-protector-all", 29 + "-Wl,--subsystem,windows" 29 30 ] 30 31 -
docker/msys/py2exe.patch
r920 r936 722 722 SystemError(GetLastError(), "Could not lock script resource:"); 723 723 return FALSE; 724 diff --git a/setup.py b/setup.py 725 index 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.