难以解决“致命错误:charconv:没有这样的文件或目录”

难以解决“致命错误:charconv:没有这样的文件或目录”

我很难解决以下错误:

$ g++ -std=c++17 -fno-exceptions -Wno-deprecated-declarations -DHAVE_CONFIG_H -I./../include -g -O2 -MT util.lo -MD -MP -MF .deps/util.Tpo -c util.cc  -fPIC -DPIC -o .libs/util.o
util.cc:23:10: fatal error: charconv: No such file or directory

信息:

$ uname -a
Linux run-6594505b5bdd472c40e6af6d-tpnhw 5.10.192-183.736.amzn2.x86_64 #1 SMP Wed Sep 6 21:15:41 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux

$ gcc --version
gcc-10 (Ubuntu 10.3.0-1ubuntu1~18.04~1) 10.3.0

我在论坛中看到的唯一建议涉及 gcc 和 g++ 版本,但这些似乎已经足够新了。

答案1

用这个 :

> apt-get install apt-file 
> apt-file update

# Now search dependency
> apt-file search charconv

我认为你需要安装libc++-[VERSION]-dev

相关内容