如何将 --program-prefix=PREFIX 从configure传递到子makefile之一?

发布于 2024-07-21 11:27:43 字数 362 浏览 3 评论 0原文

Autoconf 让我难住了。

我尝试按如下方式修改 Makefile.in 中的 COMPILE,

COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -DFINALDIR=\"$(DESTDIR)$(bindir)\"

但我对 FINALDIR 的使用未定义。 正确的做法是什么? 在我看来,整个 autoconf 业务是一个由预处理器组成的老鼠巢,隐藏着任何明显的东西。

预先感谢...抱歉我是这样一个工具!

Autoconf has gotten me stumped.

I have tried modifying the COMPILE in Makefile.in as follows

COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -DFINALDIR=\"$(DESTDIR)$(bindir)\"

but my use of FINALDIR is undefined. What is the proper way to do it? In my defense the whole autoconf business is a rats nest of preprocessors hiding anything obvious.

Thanks in advance... sorry I am such a tool!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

开始看清了 2024-07-28 11:27:43

您可能需要将该定义移至 CPPFLAGSAM_CPPFLAGS 中; 很可能某些东西只运行 C 预处理器,而不运行编译器,或者至少运行编译器而不使用 ${COMPILE}

You may need to move that definition into CPPFLAGS or AM_CPPFLAGS; it's quite possible that something is running the C preprocessor only, without running the compiler, or at least running the compiler without using ${COMPILE}.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文