实验性::文件系统链接器错误


94

我尝试在gcc 6.0的开发中实际使用新的c ++ 1z功能。

如果我尝试这个小例子:

#include <iostream>
#include <experimental/filesystem>
namespace fs = std::experimental::filesystem;
int main()
{
    fs::path p1 = "/home/pete/checkit";

    std::cout << "p1 = " << p1 << std::endl;
}

我有:

/ opt / linux-gnu_6-20151011 / bin / g ++ --std = c ++ 1z main.cpp -O2 -g -o go
/tmp/ccaGzqFO.o:在函数\`std :: experimental :: filesystem :: v1 :: __ cxx11 :: path :: path(char const(&)[36])'中:
/opt/linux-gnu_6-20151011/include/c++/6.0.0/experimental/bits/fs_path.h:167:对`std :: experimental :: filesystem :: v1 :: __ cxx11 :: path :: __ M_split_cmpts的未定义引用()”
collect2:错误:ld返回1退出状态

gcc版本是快照linux-gnu_6-20151011

有什么提示如何链接新的c ++ 1z功能吗?

Answers:


154

Filesystem TS与C ++ 1z支持无关,它是一个完全独立的规范,不属于C ++ 1z工作草案。GCC的实现(在GCC 5.3和更高版本中)甚至可以在C ++ 11模式下使用。

您只需要链接-lstdc++fs即可使用它。

(相关的库,libstdc++fs.a是一个静态库,因此对于任何静态库,它应位于链接器命令中依赖于该库的任何对象之后。)

2017年11月更新:与Filesystem TS一样,GCC 8.x 具有C ++ 17 Filesystem库的实现,该库在<filesystem>或中std::filesystem使用-std=gnu++17或在名称空间中定义(注意,这些名称中没有“ experimental”名称)-std=c++17。GCC的C ++ 17支持尚不完整或不稳定,并且在被认为可以在黄金时间使用之前,您还需要链接到-lstdc++fsC ++ 17 Filesystem功能。

2019年1月更新:从GCC 9开始,std::filesystem无需使用C ++ 17 组件即可-lstdc++fs(但您仍需要使用该库std::experimental::filesystem)。


2
是否在任何地方都记录了此文件,我自己确定了这个问题,却一无所获,我在这里错过了一些资源吗?
Shafik Yaghmour


2
当我尝试使用此命令时,出现相同的链接器错误。c++ -lstd++fs main.cpp。我正在使用gcc version 5.3.1 20151207 (Red Hat 5.3.1-2) (GCC)
alfC

15
好的,-lstdc++fs必须在该行的末尾(至少在源文件之后)。我不明白为什么有些-lxxx需要结束而另一些则不需要。
alfC

5
@alfC,因为链接器就是这样工作的。引用从左到右解析,因此您需要在使用静态库的对象之后列出它们。
Jonathan Wakely

31

如果您使用的是cmake,请将以下行添加到CMakeLists.txt

link_libraries(stdc++fs)

这样cmake可以链接到相应的库。


9
我做了target_link_libraries(hello_world_ stdc++fs),它编译了。
sunapi386 '19

13

使用clang 4.0+,您需要链接 libc++experimental.a

确保使用-stdlib = libc ++(如注释中所述)使用libc ++(不是libstdc ++)进行构建。


我还需要-stdlib = libc ++,因为我的clang版本意外地使用libstdc ++。
Bowie Owens

@BowieOwens谢谢,更新后的答案很清楚。
xaxxon

当您说“确保要使用libc ++进行构建”时,该怎么做?(最好使用CMake解决方案。)。谢谢。
mannyglover

1
@mannyglover -stdlib=libc++set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
xaxxon

3

这是一个可能对将来的人有用的演示:

环境:el6gcc/5.5.0

#include <iostream>
#include <string>
#include <experimental/filesystem>

int main()
{
    std::string path = std::experimental::filesystem::current_path();

    std::cout << "path = " << path << std::endl;
}

以下是编译和测试。标志是-std=c++17 -lstdc++fs

$ g++ -v
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/apps/gcc-5.5.0/bin/../libexec/gcc/x86_64-unknown-linux-gnu/5.5.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: ../configure --prefix=/apps/gcc-5.5.0 --disable-multilib --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --enable-languages=all
Thread model: posix
gcc version 5.5.0 (GCC)

$ ls -lrt /apps/gcc-5.5.0/lib64 | grep libstdc
-rwxr-xr-x. 1 root root  11272436 Jun 25 10:51 libstdc++.so.6.0.21
-rw-r--r--. 1 root root      2419 Jun 25 10:51 libstdc++.so.6.0.21-gdb.py
-rwxr-xr-x. 1 root root       976 Jun 25 10:51 libstdc++.la
-rwxr-xr-x. 1 root root  11272436 Jun 25 10:51 libstdc++.so
-rw-r--r--. 1 root root  10581732 Jun 25 10:51 libstdc++fs.a
-rw-r--r--. 1 root root  28985412 Jun 25 10:51 libstdc++.a
-rwxr-xr-x. 1 root root       916 Jun 25 10:51 libstdc++fs.la
-rwxr-xr-x. 1 root root  11272436 Jun 25 10:51 libstdc++.so.6

$ g++ filesystem-testing.cpp -lstdc++fs -std=c++17
$ ./a.out

$ g++ -std=c++17 filesystem-testing.cpp -lstdc++fs
$ ./a.out
path = /home/userid/projects-c++/filesystem-testing

它还适用于标志: -std=c++11

$ g++ -std=c++11 filesystem-testing.cpp -lstdc++fs
$ ./a.out
path = /home/userid/projects-c++/filesystem-testing

以下有编译错误 _ZNSt12experimental10filesystem2v112current_pathB5cxx11Ev

$ g++ -std=c++17 -lstdc++fs filesystem-testing.cpp
/tmp/ccA6Q9oF.o: In function `main':
filesystem-testing.cpp:(.text+0x11): undefined reference to `_ZNSt12experimental10filesystem2v112current_pathB5cxx11Ev'
collect2: error: ld returned 1 exit status
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.