checking which warning flags were supported... -Wall -Wextra -Wsign-compare -Werror-implicit-function-declaration -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wpacked -Wswitch-enum -Wmissing-format-attribute -Wstrict-aliasing=2 -Winit-self -Wunsafe-loop-optimizations -Wdeclaration-after-statement -Wold-style-definition -Wno-missing-field-initializers -Wno-unused-parameter -Wno-attributes -Wno-long-long -Winline checking for CAIRO... no checking for LIBUDEV... no checking for native atomic primitives... Intel checking for PCIACCESS... no configure: error: Package requirements (pciaccess >= 0.10) were not met: No package 'pciaccess' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables PCIACCESS_CFLAGS and PCIACCESS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.
时间: 2023-08-01 16:12:29 浏览: 173
centos6.x 安装升级glibc2.17 gcc-4.8.2
这个错误是因为在配置软件时缺少了pciaccess包的依赖。你可以尝试执行以下命令安装pciaccess包:
```
sudo apt-get install libpciaccess-dev
```
如果你使用的是其他发行版,请使用相应的包管理器安装libpciaccess-dev。安装完成后再次运行配置命令即可。
阅读全文