autoconf

    0熱度

    1回答

    當我安裝或檢查我自己的R-包: devtools::check() 我需要我的包中一個配置文件。但是,如果R在和然後配置之前自動調用autoconf ,將會很有用。你知道這是可能的嗎?

    0熱度

    1回答

    我試圖使用三個數字變量將configure.ac中的版本信息傳遞給Makefile.am,這用於在編譯期間設置-version-info參數。如此檔案。 這是我configure.ac: - current=4 revision=2 age=1 AC_INIT([rdma2], [3.1], [[email protected]]) AM_INIT_AUTOMAKE AC_PROG_CX

    1熱度

    1回答

    我有一些自定義autoconf宏將由幾個項目共享。我希望有一些AC_ARG_WITH宏取決於該項目,所以它們在./configure -h時不顯示。例如: if test $PKG_NAME = proj1; then AC_ARG_WITH(foodir, AC_HELP_STRING([--with-foodir=DIR], [where foo will come fr

    0熱度

    2回答

    我是新來的GNU autotools.In我的項目,當我嘗試./configure它會生成以下錯誤語法錯誤: ./configure: line 9852: syntax error near unexpected token `luajit,' ./configure: line 9852: ` PKG_CHECK_MODULES(luajit, luajit,LLUAJIT="yes",LL

    0熱度

    2回答

    我試圖讓我的項目與automake構建。特別是在使用Allegro5時。 我可以使用下面的命令就好 g++ -std=c++0x *.cpp -o mygame $(pkg-config --libs allegro-5.0 \ allegro_acodec-5.0 allegro_audio-5.0 allegro_color-5.0 allegro_dialog-5.0 \ allegro

    0熱度

    1回答

    我使用./configure設置了CPPFLAGS和LDFLAGS,但仍未找到標頭fst.h。儘管它位於CPPFLAGS目錄中的指示位置。 ./configure CPPFLAGS=-I/Users/username/Downloads/openfst-1.5.1/src/include LDFLAGS=-L/Users/username/Downloads/openfst-1.5.1/src/l

    0熱度

    1回答

    假設一個普通configure.ac: AC_INIT([foobar], 1.0) m4_define([foobar_m4], [foobar.m4]) m4_include(foobar_m4) 與瑣碎foobar.m4: AS_ECHO(["foobar.m4 was included"]) 運行autoreconf生產: aclocal: error: configure.a

    0熱度

    1回答

    我試圖安裝在Ubuntu 14.04圖書館這就需要下面的命令: autoreconf -vfi 輸出是 Usage: autoreconf [-f] [-h] [--help] [-m dir] [--macrodir=dir] [-l dir] [--localdir=dir] [--force] [--verbose] [--version] [--cygnus] [-

    -1熱度

    1回答

    我正在使用./configure來配置其中一個項目。我從它得到以下錯誤。 checking for the pthreads library -lpthreads... no checking whether pthreads work without any flags... no checking whether pthreads work with -Kthread... no che

    0熱度

    1回答

    我想測試一下系統是否完全支持gcc -m32。我嘗試使用AX_CHECK_COMPILE_FLAG([ - m32],...,...)。那個測試沒有做我想做的事情。它似乎測試-m32是否是gcc的有效選項,不是它實際上可以編譯代碼。 我知道如果我測試-m33,那麼AX_CHECK_COMPILE_FLAG正確地表示沒有按預期的選項-m33。 在這個特殊的系統編譯一個簡單的Hello World程序