2014-07-15 65 views
0

當我嘗試在Xcode中建立一個python項目時,我按照線上指示說,如果我想構建,我需要做下面的事情。/usr/bin/make失敗,退出代碼爲2

  1. 文件 - 新建 - 項目 - 外部構建系統。
  2. 文件 - 新建 - 文件 - 空。
  3. 產品 - 方案 - 編輯方案
  4. 信息 - 可執行文件 - 其他 - Python的安裝目錄(在/ usr/bin中/蟒蛇,默認) 調試器(無)
  5. 參數 - 傳遞上啓動參數=蟒蛇文件。
  6. 選項 - 工作目錄(python文件目錄)。

然後我運行該項目 錯誤就出來了:

Command /usr/bin/make failed with exit code 2;

我應該怎麼做來解決這個問題?

回答

0

Exit Codes With Special Meaning

2. Misuse of shell builtins (according to Bash documentation) 
    Missing keyword or command, or permission problem (and diff return code on a failed binary file comparison). 

它看起來像你有一個權限問題(須藤),或者你沒有傳遞正確的參數Python可執行。

0

我剛纔面臨着同樣的問題,但有不同的情況下,我會在這裏發佈我的解決方案,我希望它可以幫助別人:

我在一箇舊的應用可以使用的XCode 6內置的工作,它建立完全沒有問題。這個應用程序有一個網絡庫,它在XCode 6中編譯也很好。

然而,在XCode中7網絡庫不編譯,並給出錯誤:

make: *** No rule to make target `install'. Stop. 
Command /usr/bin/make failed with exit code 2 

於是,經過一番挖掘我做編輯Makefile並添加以下條目:

install:: version 

所以,錯誤是關於安裝規則丟失,我不使用這在XCode 6中,但添加它後,錯誤消失了。現在我可以在XCode中7 =創建我的檔案沒有問題d

0

不幸的是,我遇到了同樣的問題,但我的錯誤代碼是

make: *** no targets specified and no makefile found . stop.

enter image description here

最後我解決它,下面是我的方法

構建工具貼劑默認之前配置爲

/usr/bin/make

如果你想運行*。PY文件,你應該改變目錄

/usr/bin/python

構建成功 enter image description here

相關問題