Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #38 from matysek/develop
Antivirus, foreign characters in paths on Win and updated license header in bootloader code.
- Loading branch information
Showing
with
1,589 additions
and 1,654 deletions.
- BIN PyInstaller/bootloader/Windows-32bit/inprocsrvr.dll
- BIN PyInstaller/bootloader/Windows-32bit/inprocsrvr_d.dll
- BIN PyInstaller/bootloader/Windows-32bit/inprocsrvrw.dll
- BIN PyInstaller/bootloader/Windows-32bit/inprocsrvrw_d.dll
- BIN PyInstaller/bootloader/Windows-32bit/run.exe
- BIN PyInstaller/bootloader/Windows-32bit/run_d.exe
- BIN PyInstaller/bootloader/Windows-32bit/runw.exe
- BIN PyInstaller/bootloader/Windows-32bit/runw_d.exe
- BIN PyInstaller/bootloader/Windows-64bit/inprocsrvr.dll
- BIN PyInstaller/bootloader/Windows-64bit/inprocsrvr_d.dll
- BIN PyInstaller/bootloader/Windows-64bit/inprocsrvrw.dll
- BIN PyInstaller/bootloader/Windows-64bit/inprocsrvrw_d.dll
- BIN PyInstaller/bootloader/Windows-64bit/run.exe
- BIN PyInstaller/bootloader/Windows-64bit/run_d.exe
- BIN PyInstaller/bootloader/Windows-64bit/runw.exe
- BIN PyInstaller/bootloader/Windows-64bit/runw_d.exe
- +5 −2 PyInstaller/build.py
- +2 −0 PyInstaller/loader/pyi_archive.py
- +13 −0 PyInstaller/loader/pyi_carchive.py
- +0 −408 bootloader/common/launch.c
- +0 −100 bootloader/common/launch.h
- +59 −117 bootloader/common/main.c
- +11 −0 bootloader/common/mkdtemp.h
- +57 −50 bootloader/common/pyi_archive.c
- +53 −37 bootloader/common/pyi_archive.h
- +11 −29 bootloader/common/pyi_global.c
- +44 −41 bootloader/common/pyi_global.h
- +467 −0 bootloader/common/pyi_launch.c
- +86 −0 bootloader/common/pyi_launch.h
- +222 −0 bootloader/common/pyi_path.c
- +35 −0 bootloader/common/pyi_path.h
- +11 −29 bootloader/common/pyi_python.c
- +13 −26 bootloader/common/pyi_python.h
- +50 −75 bootloader/common/pyi_pythonlib.c
- +13 −27 bootloader/common/pyi_pythonlib.h
- +269 −134 bootloader/common/pyi_utils.c
- +16 −31 bootloader/common/pyi_utils.h
- +8 −21 bootloader/common/stb.h
- +13 −35 bootloader/common/utils.h
- +10 −25 bootloader/linux/getpath.h
- +0 −234 bootloader/linux/utils.c
- +18 −30 bootloader/windows/dllmain.c
- +12 −24 bootloader/windows/resource.h
- +30 −127 bootloader/windows/utils.c
- +34 −21 bootloader/wscript
- +11 −17 bootloader/wscript17
- +4 −4 buildtests/multipackage/test_multipackage1.spec
- +2 −2 buildtests/multipackage/test_multipackage2.spec
- +2 −2 buildtests/multipackage/test_multipackage3.spec
- +2 −2 buildtests/multipackage/test_multipackage4.spec
- +3 −3 buildtests/multipackage/test_multipackage5.spec
- +1 −1 buildtests/runtests.py
- +2 −0 doc/credits.txt
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Oops, something went wrong.