Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using Powerbuilder 5.4 and getting an unusual build error

Status
Not open for further replies.

zzherc

Programmer
Feb 20, 2003
1
US
When using powerbuilder 5.4 and trying to build my application, the build gets close to the end and I receive an error that directs me to the log on the C: drive. When I open the log I get the following:
CGEN: Compiling 'C:\\PWRS\\SYS32\\cgen\\EN32T.c'CGEN: Compiling 'C:\\windows\\TEMP\\eccsecn.c'CGEN: Linking...__imp__VirtualQuery@12 is an undefined reference
If anyone knows what this error means please let me know.
 
Any time you get a BUILD error during the LINK phase of the operation, you've got an object that is being referenced that the compiler cannot find.

I'm not sure if "__imp__VirtualQuery@12" is an object reffered to in your code or is an indirect reference.

In any case, if you do a REGEN on each PBL in the PC on which the BUILD error occurs (one at a time), you should be able to identify the source of the error.


Olan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top