"Hunk" <[EMAIL PROTECTED]> writes:

> The option i'm using in RSD to link the library to the file is
> g++  -o Concurrency.exe     nothread.o    -l"D:\RoseTests\Myzthread
> \Debug\libMyzthread.a"

This is incorrect. Use either:

  g++ -o Concurrency.exe nothread.o 
"D:\RoseTests\Myzthread\Debug\libMyzthread.a"

or 

  g++ -o Concurrency.exe nothread.o -L"D:\RoseTests\Myzthread\Debug" -lMyzthread

Also, *do* read "info gcc" to understand what -l does and why your
original command line is bogus.

Cheers,
-- 
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.
_______________________________________________
help-gplusplus mailing list
help-gplusplus@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to