05-27-2022, 03:03 PM
(05-27-2022, 02:25 PM)euklides Wrote:(05-27-2022, 11:05 AM)Coolman Wrote: qb64 has everything you need to create utility programs. the only drawback is the size of the generated programs compared to freebasic for example.
You can use UPX for instance to reduce the size: 2000.000->650.000 (1/3~) Works fine
for console utilities often run in bash scripts several times, upx is not recommended because it slows down the program but it is a solution for other types of programs.
very simple comparison between freebasic and QB64.
freebasic - size of the compiled program : 42ko
Code: (Select All)
print "hello"
endQB64 - size of the compiled program : 605ko
Code: (Select All)
$Console:Only
Print "hello"
Endthe difference is important.

