Apr 19, 2004 #1 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 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
Apr 20, 2004 #2 vpshriyan IS-IT--Management Jul 26, 2002 356 IN 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 Upvote 0 Downvote
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