2014-06-15 39 views
0

我試圖在我的mac上安裝一個c垃圾回收器。我已經下載了所有必要的文件(git,automake等)。我遵循網站http://www.hboehm.info/gc/的指示。當我到達命令「automake --add-missing」時,我收到以下消息:在os x mavericks上安裝Boehm的C垃圾回收器

configure.ac: error: no proper invocation of AM_INIT_AUTOMAKE was found. 
configure.ac: You should verify that configure.ac invokes AM_INIT_AUTOMAKE, 
configure.ac: that aclocal.m4 is present in the top-level directory, 
configure.ac: and that aclocal.m4 was recently regenerated (using aclocal) 
automake: error: no 'Makefile.am' found for any configure output 
automake: Did you forget AC_CONFIG_FILES([Makefile]) in configure.ac? 

有人可以幫我嗎?我究竟做錯了什麼?謝謝!

回答

0

看起來你有錯誤的automake版本 - 確保你有確切版本指定的軟件,而不是任何更高版本,因爲後來的automake版本通常不向後兼容。

+0

我不認爲這是automake的錯。我的Mac和我的Ubuntu筆記本電腦上都安裝了1.14.1版本。在Ubuntu上,我按照說明成功安裝了垃圾回收器。在Mac上,我得到一個錯誤。 – user3551775