编译/配置时如何指定额外的 include 和 lib 目录? (回复:自动配置/配置)

问题描述 投票:0回答:1

我是一名 Windows 开发人员,只有一点使用 GNU gcc/make/autoconf 等进行编译的经验。

我正在尝试在我的新 MacBook 上编译一些应用程序,并将依赖项放在单独的目录中:

./configure --prefix=/opt/ports
make
make install

现在,当我编译/配置需要位于 /opt/ports 中的依赖项的应用程序时,如何指定它(即 lib 和包含目录)?

compilation include static-linking dynamic-linking configure
1个回答
1
投票
export CPPFLAGS='-I/home/foo/sw/include/'
export LDFLAGS='-L/home/foo/sw/lib/'
© www.soinside.com 2019 - 2024. All rights reserved.