I have a small C++ example program and thought I can compile it with SCC. Unfortunately it seems that the STL library is unknown to SCC. Is this correct?
#include <iostream.h>
#include <string.h>
#include <vector.h>
#include <fstream.h>
#include <math.h>
#include <time.h>
#include <iomanip.h>
string LOCATION;
int Imax, Imin, dI, dtheta;
int main(int argc, char * argv[])
{
int n=0;
for (n=0; n<argc; n++)
{
printf(argv[n]);
printf('\\n');
}
string tmp;
tmp = argv[2]; // Imax
from_string<int>(Imax, tmp, std::dec);
tmp = argv[3]; // Imin
from_string<int>(Imin, tmp, std::dec);
tmp = argv[4]; // dI
from_string<int>(dI, tmp, std::dec);
tmp = argv[5]; // detheta
from_string<int>(dtheta, tmp, std::dec);
return 0;
}