参考地址:https://blog.csdn.net/qq_24755999/article/details/78722788


You seem to have the current working directory in your LD_LIBRARY_PATH environment variable.

问题现象:

在 buildroot make的时候,出现以下的提示:

You seem to have the current working directory in your  LD_LIBRARY_PATH environment variable. This doesn't work.
make: *** [core-dependencies] 错误 1

 

解决方法:

暂时将LD_LIBRARY_PATH变量的内容变为空白

 

LD_LIBRARY_PATH=

 

成功以后,测试

echo $LD_LIBRARY_PATH

 

应该是输出了一行空行。

【解决方法】You seem to have the current working directory in your LD_LIBRARY_PATH environment variable.

 

恢复方法:

重新启动终端 或者 重新读取有关的环境变量

source /etc/profile

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-27
  • 2022-12-23
  • 2021-09-24
  • 2021-05-22
  • 2023-02-04
猜你喜欢
  • 2021-10-13
  • 2022-12-23
  • 2021-12-02
  • 2021-10-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案