1. Bind vs Compile
- Posted by DonCole May 25, 2012
- 1554 views
Hello everybody,
When I Bind a program I get:
deleted 862 unused routines and 3531 unused variables.
1.) Does this occur when I compile?
2.) How can I get a list of these variables and routines?
Don Cole
2. Re: Bind vs Compile
- Posted by DerekParnell (admin) May 28, 2012
- 1374 views
DonCole said...
When I Bind a program I get:
deleted 862 unused routines and 3531 unused variables.
1.) Does this occur when I compile?
Yes.
DonCole said...
2.) How can I get a list of these variables and routines?
Run the bind program with the option -list. This will create a file called "deleted.txt" that lists all the removed routines and variables.
Refer to the manual
3. Re: Bind vs Compile
- Posted by DonCole May 30, 2012
- 1222 views
Thank you Derek,
This saves me a lot of worry.
Don Cole