vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| HI, I need to compile a shared library from my .c file. I use the folowing command: cc -b MyFile.o MyFile.c I get the following warning: "(Bundled) cc: warning 422: Unknown option "b" ignored." How can I compile a shared library using bundled c? Thank you for your help, CC |
| |||
| Christian <ccote_msl@yahoo.com> wrote: > I need to compile a shared library from my .c file. I use the folowing > command: > > cc -b MyFile.o MyFile.c > > I get the following warning: "(Bundled) cc: warning 422: Unknown > option "b" ignored." > > How can I compile a shared library using bundled c? The Bundled C compiler can't do that. You have to purchase the ANSI-C compiler from hp or use gcc insteed (hpux.asknet.de) Frank -- Religion kill humans! |
| ||||
| Frank Thyes (frank.thyes.nospam@gmx.net) wrote: : > I get the following warning: "(Bundled) cc: warning 422: Unknown : > option "b" ignored." : The Bundled C compiler can't do that. You have to purchase the : ANSI-C compiler from hp or use gcc insteed (hpux.asknet.de) : Frank Right. If you used +z to get PIC you would get a nice message: (Bundled) cc: warning 480: The +z option is available only with the C/ANSI C product; ignored. |