Compilers
Binaries
Debugger
edbEXE package maker
upx -9 <file>.exe.PY to EXE converter
pip install pyinstaller
pyinstaller --onefile -w 'filename.py'GCC
gcc <file>.c -o <filename>.o
gcc <file> -mtune=<i386,i486,i586,i686,generic,native>
gcc <file> -m32
gcc <file> -m64Make a shared library
gcc -c -Wall -Werror -fpic <file>.c
gcc -shared -o <lib shared>.so <file>.oCompile for older kernels
Cross compile
To windows
Setup
To *nix
Setup
Last updated