On Tue, Sep 19, 2006 at 11:30:40AM -0400, Kate Minola wrote:
> Ok, I say to myself, I understand this. The version of g++ that I am
> using is one that I built in my home directory and so it's libgcc_s.so.1
> is only linked if I use -static-libgcc. Whereas without -static-libgcc,
> I am linking w
Perhaps a kind person would help clear up my confusion regarding
-static-libgcc?
Consider the following C++ program:
foo.cc -
using namespace std;
#include
int main (int argc, char *argv[])
{
int DIGITS;
DIGITS=14;
pow(1./10,DIGITS);
return 0;
}
---