应用程序无法检测到 C++ poco,即使我已经安装了它

Apps cannot detect C++ poco even though I have installed it

我希望能够在我的计算机上创建和 运行 this 特定的库。当前正在浏览 INSTALL 文件。我目前在:

After extracting the Poco (Complete Edition) source archive, the configure
script should be called with the following parameters:

    ./configure --omit=Crypto,Net,NetSSL_OpenSSL,Data/ODBC,Data/MySQL \
                --no-tests --no-samples

This line avoids building the parts of Poco which are dependent on third-party
libraries, and are not required for openBliSSART.

You can also specify a prefix where Poco should be installed, but in most cases
you should leave the default /usr/local.

我似乎无法 运行 选项,所以我只是 运行 ./configure,这似乎一直有效,直到我遇到:

checking for fftw_plan_dft_r2c_1d in -lfftw3... yes
checking for Poco (Enterprise)... no
configure: error: Need Poco Enterprise v1.3.6+!

但事实是,我已经通过 brew install poco 在系统上安装了 Poco,并从他们的 source website 下载了库并进行了编译。回顾INSTALL

Depending on where you have installed Poco, you may have to set the
LD_LIBRARY_PATH environment variable to contain the Poco "lib" directory, 
or run the ldconfig tool. The following lines work with Ubuntu and openSUSE
($ indicates the shell prompt):

$ sudo sh -c 'echo <prefix>/lib > /etc/ld.so.conf.d/poco.conf'
$ sudo ldconfig

where <prefix> is the Poco install prefix (by default /usr/local).

现在当我做一个简单的 sudo find / -name poco 时,我得到:

/usr/local/var/homebrew/linked/poco
/usr/local/opt/poco
/usr/local/Cellar/poco
find: /private/var/db/ConfigurationProfiles/Store: Operation not permitted
find: /private/var/folders/pq/xchc5hxj02d754txf8nml5f00000gn/0/SafariFamily: Operation not permitted
find: /private/var/folders/pq/xchc5hxj02d754txf8nml5f00000gn/0/com.apple.LaunchServices.dv: Operation not permitted
find: /private/var/folders/pq/xchc5hxj02d754txf8nml5f00000gn/0/com.apple.nsurlsessiond: Operation not permitted
find: /private/var/folders/pq/xchc5hxj02d754txf8nml5f00000gn/0/com.apple.routined: Operation not permitted
find: /private/var/folders/zz/zyxvpxvq6csfxvn_n00000y800007k/0/com.apple.nsurlsessiond: Operation not permitted
find: /private/var/folders/zz/zyxvpxvq6csfxvn_n00000s4000069/0/com.apple.nsurlsessiond: Operation not permitted
find: /private/var/folders/zz/zyxvpxvq6csfxvn_n00000s4000069/0/com.apple.routined: Operation not permitted
/Users/sharanduggirala/Library/Logs/Homebrew/poco
/Users/sharanduggirala/Documents/of_v0.9.8_osx_release/libs/poco
/Users/sharanduggirala/Documents/of_v0.9.8_osx_release/scripts/apothecary/formulas/poco
find: /dev/fd/3: Not a directory
find: /dev/fd/4: Not a directory

此外,在构建 poco 时,我似乎做了一个 ./configure --static。这会影响我的编译吗?我如何 link 这个图书馆?

我已经使用了命令./configure --with-poco-prefix=/usr/local/opt/poco,它并没有真正改变任何东西。


关于S.M的注释。的回答

我试过了,但出现错误:

 brew install poco --with-static                                                                                                                                                                                      ⏎
==> Downloading https://pocoproject.org/releases/poco-1.9.0/poco-1.9.0-all.tar.gz
######################################################################## 100.0%
Error: SHA256 mismatch
Expected: 028de410fc78d5f9b1ff400e93ec3d59b9e55a0cbbf0d8fec04636882b72ea45
Actual: 0387bf0f9d313e2311742e1ad0b64e07f2f3e76039eed20e3b9aa9951b88e187
Archive: /Users/sharanduggirala/Library/Caches/Homebrew/poco-1.9.0.tar.gz
To retry an incomplete download, remove the file above. 

我也试过:

./configure --static                                                                                                                                                                                                 ⏎
configure: error: unrecognized option: `--static'
Try `./configure --help' for more information

不要从源代码安装 poco。使用 brew install poco。如果你想要像 ./configure --static 一样使用 brew install poco --with-static.