參考地址: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
應該是輸出了一行空行。

恢復方法:
重新啟動終端 或者 重新讀取有關的環境變量
source /etc/profile
