About 4,310,000 results
Open links in new tab
  1. c++ - Are there any downsides to using UPX to compress a …

    Dec 10, 2008 · What's the downside to all of this packing/unpacking? Are there scenarios in which anyone would recommend NOT UPX-ing an executable (e.g. when writing a DLL, Windows …

  2. python - How do I use UPX with pyinstaller? - Stack Overflow

    Dec 14, 2017 · How do I use UPX with pyinstaller? I am following the docs. I have downloaded UPX. My file looks like: import csv import selenium import pandas print ('Hello') I then run: …

  3. python - Reducing size of pyinstaller exe - Stack Overflow

    Dec 7, 2017 · pyinstaller --upx-dir=/path/to/upx Minimize PyInstaller’s Internal Files (Advanced): PyInstaller includes some extra internal files that you might not need. You can manually …

  4. c# - what is UPX's best compression method - Stack Overflow

    Jan 20, 2012 · Even UPX is no exception. Still, my choice is UPX. Can anybody, please, suggest me what is the best possible compression / packing method available in UPX.? I am quite …

  5. Why doesn't UPX work for .NET executables? - Stack Overflow

    Mar 31, 2013 · UPX can deal directly with unmanaged machine code, but it doesn't work for managed applications. How is the JIT compiler going to compile the application's code on-the …

  6. Wrong UPX Header, Unable to Decompress with UPX

    Feb 10, 2016 · I wanted to decompress a UPX file I downloaded. However, when I decompress it using UPX command: upx -d citadel.exe I got this error: upx: citadel.exe: …

  7. UPX NotCompressibleException - Stack Overflow

    UPX cannot handle binaries under 40Kb. The best way to workaround this problem is to compile your binary in static mode, in order to get a bigger executable file. So, just try: gcc -static -o …

  8. How to detect what was the PE packer used on the given exe?

    Aug 13, 2009 · PEiD is the tool you want. It can detect a variety of unpackers, attempt to unpack any packed exe (regardless of packing scheme), do simple disassembly, detect encryption …

  9. How to reduce Go compiled file size? - Stack Overflow

    Works great. On windows I have an executable I'm building to run as a service so startup time differences measured in the ms are negligible. go build was 11MB, go build with those ldflags …

  10. python - Is there a way to reduce the size of .exe created by ...

    Jul 30, 2024 · Apart from the virtual environment, you can also use UPX for pyinstaller to reduce the size of exe. Nuitka uses zstandard package to reduce the size when you try to build your …