IonicWind Software

IWBasic => General Questions => Topic started by: basicgames on February 23, 2023, 09:15:28 PM

Title: Optimization
Post by: basicgames on February 23, 2023, 09:15:28 PM
So far, I am impressed that with IWB.

Craft Basic compiled with little change. Just had to change a variable which is a keword.

I noticed that with IWB2 it compiles smaller than Ebasic. And with IWB3 it compiles even smaller than IWB2. Very cool.

My question is was there actually efforts to make the exes smaller and more optimized or is this just a coincidence?
Title: Re: Optimization
Post by: LarryMc on February 23, 2023, 11:07:24 PM
was part of the optimization
you're still getting a lot of warnings when you compile that I know you haven't fixed, LOL
Title: Re: Optimization
Post by: basicgames on February 24, 2023, 12:02:36 AM
It could be. Some functions will not work until I fix them?

I just noticed it was compiling differently in size between 2 and 3
Title: Re: Optimization
Post by: Brian on February 24, 2023, 03:42:06 AM
I suggest you put AUTODEFINE "off" at the top of the program and compile, and see what variables you have not defined, and other errors

Brian
Title: Re: Optimization
Post by: basicgames on February 24, 2023, 05:21:03 AM
I will try that. Thank you.