Compilers

Binaries

Debugger

edb

EXE 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> -m64

Make a shared library

gcc -c -Wall -Werror -fpic <file>.c
gcc -shared -o <lib shared>.so <file>.o

Compile for older kernels

Cross compile

To windows

Setup

To *nix

Setup

Last updated