Maison > Article > développement back-end > Comment corriger l'erreur de l'éditeur de liens lors de l'utilisation du système de fichiers expérimental :: en C 1z ?
In C++1z development, users attempting to leverage the new experimental::filesystem library have encountered a linker error. This issue is distinct from C++1z support, as experimental::filesystem is a separate specification.
To resolve the issue, users must link their code with the appropriate library. For GCC 5.3 and later, use the -lstdc++fs flag:
g++ main.cpp -O2 -g -o go -lstdc++fs
This library should be placed after any objects that rely on it in the linker command since it is a static library.
Updates:
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!