web-dev-qa-db-fra.com

Pourquoi est-ce que je reçois cette erreur de référence non définie en essayant de construire un projet c ++?

Pour corriger une autre erreur de débogage, j'ai ajouté -std = c ++ 11 à la commande de construction. Maintenant, je reçois une tonne d’erreurs de référence non définies comme celle-ci:

In function encrypt(std::string&, int)': 
/home/bob/workspace/New/Debug/../test.cpp:10: undefined reference to std::string::begin()' 
/home/bob/workspace/New/Debug/../test.cpp:10: undefined reference to std::string::end()' 
./test.o: In function main': 
/home/bob/workspace/New/Debug/../test.cpp:24: undefined reference to `std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string()'" '

Que dois-je réparer? Voici mon code

using namespace std;
#include <iostream>
#include <string>

void encrypt(std::string &iostr, int key) {
key %= 26;
int ch;

for (auto &it : iostr) {
ch = tolower(it);
if (!islower(ch)) {
continue;
}
ch += key;
if (ch > 'z') {
ch -= 26;
}
it = ch;
}
}

int main() {
string source;
int key = 1;
cout
<< "Paste cyphertext and press enter to shift each letter right 1";

getline(cin, source);
encrypt(source, key);

cout << source << "";



encrypt(source, key);
cout << source << endl;
cout << "Press ENTER to exit";
cin.ignore(cin.rdbuf()->in_avail() + 1);

return 0;

}
1
bert0nius

ressemble à avoir besoin d'installer les fichiers de développement stdc ++

Sudo apt-get install libstdc++-4.8-dev

puis compiler le code

g++ -o execname ./sourcefile.cpp -std=c++11
2
cargo