Re: A-Shell Linux DYNSTRUCT related issue
[Re: John Andreasen]
#37776
14 Jan 25 05:19 PM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
WARNING: I just discovered a related problem. The compiler is now setting the minimum run version to 1767 regardless of whether there are embedded defstructs. That may not be a problem for you if you're planning to update all your production users at once. But it will likely not be appreciated by those not using embedded defstructs. Furthermore, I've already run into a site where they are using them, but since they're still in the 32 bit world, bumping up the minimum version when compiling one of the affected programs is making it difficult to roll out the new version incrementally.
So I think I need to: A) fix the minimum run version to only be set when using embedded defstructs (that was always the plan anyway). And B) add some kind of switch allowing that to be disabled. We have the /C:_MIN_RUN_VER capability, but that overrides the value to a specific version number, when what I think some people are going to want is to just disable the automatic increase to 1767. Since it's a temporary issue, maybe a regular switch is overkill; probably another special symbol. Maybe _NO_MIN_1767?
|
|
|
Re: A-Shell Linux DYNSTRUCT related issue
[Re: John Andreasen]
#37789
16 Jan 25 10:19 AM
|
Joined: Nov 2006
Posts: 2,262
Stephen Funkhouser
Member
|
Member
Joined: Nov 2006
Posts: 2,262 |
From what I can tell...These work as advertised.
Stephen Funkhouser Diversified Data Solutions
|
|
|
Re: A-Shell Linux DYNSTRUCT related issue
[Re: John Andreasen]
#37792
16 Jan 25 03:31 PM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
I haven't found any further issues either, so I expect to generate the rest of the platforms and create Windows install packages before long.
|
|
|
Re: A-Shell Linux DYNSTRUCT related issue
[Re: John Andreasen]
#37803
20 Jan 25 01:44 PM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
I just found a problem with the 1768.0 (actually it started with compiler 1051 in 1767.0, related to the new .ARG_PASSED() function) -- declaring a function parameter default value to be an actual variable results in a runtime illegal syntax error. That's a pretty rare case (I can only find one example in my code), but it reinforces Steve Evan's motto ("never trust a point zero"). I have a fix ready but am still evaluating it. Stay tuned for a 1768.1 update later tonight.
|
|
|
Re: A-Shell Linux DYNSTRUCT related issue
[Re: John Andreasen]
#37806
24 Jan 25 10:47 AM
|
Joined: Aug 2016
Posts: 403
John Andreasen
OP
Member
|
OP
Member
Joined: Aug 2016
Posts: 403 |
Hi Jack, It looks like programs that don't use DYNSTRUCTs are getting flagged to require the new build of A-Shell. Is this correct?
.versys run:ateget.sbx
ATEGET.SBX[170,0] -- A-Shell Version & System Information:
File Version: 1.0(722)
Program format: 0xF2F6 (compil/x?/av; requires A-Shell edit 1767+)
Program Size: 39,290
Object Code: 29,388
MAP Definitions: 9,872
Memory Required: 18,774
Embedded Resources:
ashell.def[309]
ashell.sdf[103]
sql.def[117]
|
|
|
Re: A-Shell Linux DYNSTRUCT related issue
[Re: John Andreasen]
#37807
24 Jan 25 11:10 AM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
That problem should have been fixed by compiler edit 1057. If you execute COMPIL by itself at the dot prompt, it will display its edit number. The 1768.1 update should have contained compiler 1058.
|
|
|
Re: A-Shell Linux DYNSTRUCT related issue
[Re: John Andreasen]
#37808
24 Jan 25 11:14 AM
|
Joined: Aug 2016
Posts: 403
John Andreasen
OP
Member
|
OP
Member
Joined: Aug 2016
Posts: 403 |
It does, but still is yielding these results.
.compil
A-Shell Compiler Version 7.0(1058)
Syntax: COMPIL <file>{/switches} (/? for help)
|
|
|
Re: A-Shell Linux DYNSTRUCT related issue
[Re: John Andreasen]
#37809
24 Jan 25 12:06 PM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
Oops. That's a bug. To be fixed shortly. In the meantime you can work around it by defining _NO_MIN_1767=1, either in the source or on the command line.
|
|
|
Re: A-Shell Linux DYNSTRUCT related issue
[Re: John Andreasen]
#37811
24 Jan 25 01:40 PM
|
Joined: Aug 2016
Posts: 403
John Andreasen
OP
Member
|
OP
Member
Joined: Aug 2016
Posts: 403 |
OK, that seems to have fixed it. Thanks
|
|
|
|
|