How to specify include directory for configure script

后端 未结 4 1795
隐瞒了意图╮
隐瞒了意图╮ 2021-02-04 03:34

I have a linux system at my workplace with pretty old packages and no root access. I\'m compiling packages that I need from source with --prefix=[somewhere in homedir]

4条回答
  •  粉色の甜心
    2021-02-04 04:04

    It's better to use CPPFLAGS to specify include directories.

    ./configure CPPFLAGS="-I/your/whatever/includedir"
    

提交回复
热议问题