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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Different size when creating Informix 4GL Runner

Status
Not open for further replies.

ttkong

Programmer
Jun 5, 2002
22
MY
Hi all,

I encounter different size everytime creating a same runner. The command used is pretty standard:

cfglgo file1.c file2.c file3.c file4.c file5.c -o bmsgo

Anyone has encountered this before and why?

Thanks.

Rgrds,
TTKong

 
Hi,

cfglgo file1.c file2.c file3.c file4.c file5.c -o bmsgo

In the above command you have not specified the binding source c file - fgiusr.c hence, I feel that you may be getting a warning saying:

Unsatisfied symbols:
usrcfuncs (data)

The correct command would be:
cfglgo fgiusr.c file1.c file2.c file3.c file4.c file5.c -o bmsgo

I'm bit clueless about the different size of object generated at your end as I've never encountered such problem in our setup.

Regards,
Shriyan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top