This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: ld symbol referencing errors
- To: tommyengstrom at hotmail dot com
- Subject: Re: ld symbol referencing errors
- From: "Martin v. Loewis" <martin at loewis dot home dot cs dot tu-berlin dot de>
- Date: Sun, 25 Jun 2000 23:01:52 +0200
- CC: gcc-bugs at gcc dot gnu dot org
- References: <20000625044144.23232.qmail@hotmail.com>
> Hi, I get ld symbol referencing errors when i try to compile the attached
> files with gcc, g++, or c++.
> I say
> /usr/local/bin/gcc tryspawn.cpp
> What do I need to do to fix?
Thanks for your bug report. This is not a bug in the compiler, but in
your code, or in the C library. In standard C, there is no function
"_spawnv" - that is a Microsoft invention (I believe). You either need
a C library that provides that function, or you must avoid using it.
Regards,
Martin