Home  >  Article  >  Backend Development  >  When running configure, it prompts that the include file cannot be found (includefi_PHP tutorial

When running configure, it prompts that the include file cannot be found (includefi_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:52:561581browse

You can look for header files and library files when compiling configuration files, and pass them through the C preprocessor and linker in the form of non-standard additions. As shown below:
CPPFLAGS=-I/path/to/include LDFLAGS=-L/path/to/library ./configure
If you use csh and compatible Shell scripts as your login script, then Should be set to:
env CPPFLAGS=-I/path/to/include LDFLAGS=-L/path/to/library ./configure

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632426.htmlTechArticleYou can search for header files and library files when compiling the configuration file, and add C in a non-standard additional form Preprocessors and connectors pass. As shown below: CPPFLAGS=-I/path/to/include LDFL...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn