| 123456789101112131415161718192021 |
- lin64:
- ./compiler ./source/Compiler.ob07 linux64exe -out ./bin/compiler_new -stk 2
- upx -f ./bin/compiler_new
- cp ./bin/compiler_new ./compiler_new
- ./compiler_new ./source/Compiler.ob07 linux64exe -out ./compiler_new2 -stk 2
- upx -f ./compiler_new2
- ls -hal
- lin32:
- ./compiler ./source/Compiler.ob07 linux32exe -out ./bin/compiler32 -stk 2
- lin64sample1:
- ./compiler ./samples/linux/hello.ob07 linux64exe -out ./bin/hello -stk 2
- ./bin/hello
- lin64sample2:
- ./compiler ./samples/linux/x11/animation.ob07 linux64exe -out ./bin/animation -stk 2
- ./bin/animation
- win64:
- ./compiler ./source/Compiler.ob07 win64con -out ./bin/Compiler.exe -stk 2
- win32:
- ./compiler ./source/Compiler.ob07 win32con -out ./bin/Compiler32.exe -stk 2
- kos:
- ./compiler ./source/Compiler.ob07 kosexe -out ./bin/Compiler.kex -stk 2
|