Bug with /RESIDENT

Just starting out? Need help? Post your questions and find answers here.
User avatar
hallodri
Enthusiast
Enthusiast
Posts: 208
Joined: Tue Nov 08, 2005 7:59 am
Location: Germany
Contact:

Bug with /RESIDENT

Post by hallodri »

Is an array in a structure, you can create a Resident file.

To compile following code
pbcompiler.exe test.pb /RESIDENT test.res

Code: Select all

Structure Test
  Array myArray.s(0)
EndStructure

Structure Test2
  ar.TEst
EndStructure
gets you an empty res file.

Code: Select all

ERUP....5SERTCRS....TSNC....MACR....PROT....
PB 4.51 RC1 32bit
PB 4.50 64bit
Fred
Administrator
Administrator
Posts: 18226
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: Bug with /RESIDENT

Post by Fred »

That's because the whole structure is ignored when a dynamic element is found in it. Such structure aren't supported in residents for now.
Post Reply