Run Ant with -verbose, and you'll see the command line issued. I bet
you'll see that despite using the "g++" compiler name, it uses "gcc"
in the command line.
I believe g++ is equivalent to gcc, linking with stdc++, so if you add
a linker arg or a libset, you should be fine.
Note that you should
Sounds like an ant-contrib problem,
rather than an Ant core problem to me...
Jeffrey E. (Jeff) Care
[EMAIL PROTECTED]
IBM WebSphere Application
Server Development
WAS Pyxis Lead
Release Engineer
Hi
I'm trying to get running on Ant. I have Ant 1.6.5 running on Fedora
Core 5 and I'm using gcc/g++ v4.1.1.
I have a simple C++ program in file hello.cpp as follows
#include
int main()
{
std::cout << "CPP Hello world\n";
return (0);
}
This build fine with the command line g++ -o hello hel