Não foi possível compilar com / opt / ELDK42 / usr / bin / ppc-linux-g ++

1

aqui é meu test.cpp

#include<iostream>
    using namespace std;
    int main()
    {
     cout<<"hello world";
     return 0;
    }



 $ /opt/ELDK42/usr/bin/ppc-linux-g++ test.cpp

Erros de compilação:

test.cpp:1:19: error: iostream: No such file or directory
test.cpp: In function 'int main()':
test.cpp:10: error: 'cout' was not declared in this scope

Por que não foi possível recuperar o iostream de nenhum diretório de inclusão? Então, tentei compilar incluindo explicitamente

/opt/ELDK42/usr/bin/ppc_85xx-g++ test.cpp -I/opt/ELDK42/ppc_85xx/usr/include/c++/4.2.2/

Em seguida, deu os seguintes erros:

In file included from test.cpp:1:
/opt/ELDK42/ppc_85xx/usr/include/c++/4.2.2/iostream:44:28: error: bits/c++config.h: No such file or directory
In file included from /opt/ELDK42/ppc_85xx/usr/include/c++/4.2.2/ios:43,
                 from /opt/ELDK42/ppc_85xx/usr/include/c++/4.2.2/ostream:45,
                 from /opt/ELDK42/ppc_85xx/usr/include/c++/4.2./iostream:45,

Mas pude ver o arquivo de cabeçalho ausente aqui:

/opt/ELDK42/ppc_85xx/usr/include/c++/4.2.2/powerpc-linux/bits/c++config.h

I am not able to figure out, why gcc is not able to find the header files properly & compile??

Isso tem alguma coisa a ver com a versão do ELDK?

Qualquer ajuda, muito apreciada.

Detalhes do sistema: Ubuntu 14.04 gcc 4.2.2

    
por satya 01.06.2015 / 14:51

0 respostas