錯誤:在 `make` 指令之後的 (1) 表達式中需要右括號

錯誤:在 `make` 指令之後的 (1) 表達式中需要右括號

我正在編譯一個軟體如下本教程(稱為 PRESTO),但是當我輸入 時./configure,我收到以下訊息:

$ make && sudo make install
Making all in src
make[1]: enter directory "/home/user/Softwares/tempo/src"
/usr/bin/f77  -g -O2 -c -o bnryddfwhiecc.o bnryddfwhiecc.f
bnryddfwhiecc.f:130:71: Error: Expected a right parenthesis in expression at (1)
Makefile:468: set of instructions for the objective "bnryddfwhiecc.o" failed 
make[1]: *** [bnryddfwhiecc.o] Error 1
make[1]: exit directory "/home/user/Softwares/tempo/src"
Makefile:359: set of instructions for the objective "all-recursive" failed
make: *** [all-recursive] Errore 1

我認為這與程式碼中的行過長有關。我嘗試將一個&字符添加到“以下”行的第六列,或者在長行末尾之後添加一個字符,基本上這裡說了什麼,但沒有成功。

我寧願使用命令來禁用長行錯誤,而不是去修改每個文件的每一行。但我的了解還不足以採取行動。

相關內容