3

自作Apache httpd24から自作apxを使用すると、libtoolで失敗します:コンパイル:タグ付き構成を推測できません

$ apxs -i -c -Wc,"-arch x86_64" -Wl,"-arch x86_64 " mod_uwsgi.c
/usr/share/apr-1/build-1/libtool --silent --mode=compile cc -prefer-pic   -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK  -I/usr/local/Cellar/httpd24/2.4.3/include/apache2  -I/usr/include/apr-1   -I/usr/include/apr-1  -arch x86_64  -c -o mod_uwsgi.lo mod_uwsgi.c && touch mod_uwsgi.slo
libtool: compile: unable to infer tagged configuration
libtool: compile: specify a tag with `--tag'
apxs:Error: Command failed with rc=65536
.

libtool がタグについて文句を言わないようにするには、どの環境をエクスポートする必要がありますか?

4

1 に答える 1

4

ソースを掘り下げた後、LTFLAGS が --tag=cc に設定されている場合に機能することがわかりました。

$ LTFLAGS=--tag=cc apxs -i -c mod_uwsgi.c
于 2012-12-20T18:31:41.197 に答える