如何使用自制软件构建带有调试符号的库?

时间:2017-07-24 06:36:44

标签: macos debugging homebrew

homebrew是否可以选择使用调试符号构建包?我开发了一个带有QT库的应用程序,希望能够从我的IDE中快速访问其源代码。

我的QT安装步骤:

brew install qt
brew link --force qt
QT_V=`brew info --json=v1 qt | jsawk -n 'out(this.installed[0].version)'` \
  ln -sf /usr/local/Cellar/qt5/${QT_V}/mkspecs /usr/local/mkspecs && \
  ln -sf /usr/local/Cellar/qt5/${QT_V}/plugins /usr/local/plugins

1 个答案:

答案 0 :(得分:1)

Homebrew没有这样的通用选项。运行brew info <formula>以获取给定公式可用的选项。

如果qt没有--debug选项:

$ brew info qt
...
==> Options
--with-docs
    Build documentation
--with-examples
    Build examples
--with-mysql
    Build with mysql support
--with-postgresql
    Build with postgresql support
--with-qtwebkit
    Build with QtWebkit module
--HEAD
    Install HEAD version

附注:使用brew --prefix <formula>获取公式的已安装前缀。如果链接的话,您将获得与版本无关的前缀:

$ brew --prefix qt
/home/baptiste/.linuxbrew/opt/qt

这适用于公式升级,因为Homebrew负责更新符号链接。