[EMAIL PROTECTED] writes:

> g++ -g -L/usr/local/lib -llibACE test.cpp
> g++ -g -L/usr/local/lib -libACE test.cpp
>
> Not sure what else to try.

How about RTFM?

One of these commands will likely work:

  g++ -g test.cpp -lACE
  g++ -g test.cpp -L/usr/local/lib -lACE

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