nginx 編譯出現的問題

祝翔翔發表於2018-03-02

    今天在一臺新的伺服器上 準備安裝nginx 一開始裝的擴充套件什麼的都很順利 但是make的時候出了問題 我確定所有需要的擴充套件都已經安裝好了,出現問題如下:

haiqi@haiqi-B85M-D2V:/nginx-1.10.3$ make

cc1: all warnings being treated as errors
objs/Makefile:458: recipe for target 'objs/src/core/ngx_murmurhash.o' failed
make[1]: *** [objs/src/core/ngx_murmurhash.o] Error 1
make[1]: Leaving directory '/nginx-1.10.3'
Makefile:8: recipe for target 'build' failed

make: *** [build] Error 2


折騰了一上午之後 終於在另一篇文章中找到解決方法 http://www.aiuxian.com/article/p-429153.html

將對應的makefile資料夾中(如本文中在 /nginx-1.10.3/objs/Makefile) 找到 -Werrori 並去掉 在重新make即可

查了-Werrori意思之後 發現原來它要求GCC將所有的警告當成錯誤進行處理 所有導致錯誤輸出 並不能進行下一步

相關文章