1

我想试试 libcurl 的 C++ 包装器;卷曲。该文档似乎不存在。我正在按照我在这里找到的步骤进行操作:

http://wiki.hartungdesign.net/docs:mac:builds:curlpp

这基本上只是说做典型的 1. ./configure (with some args) 2. make

'make' 失败并出现以下错误:

全部在 src 全部在 utilspp /bin/sh ../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../include/curlpp -I../../include -g -W -Wall -Werror -MT LifetimeLibrary.lo -MD -MP -MF .deps/LifetimeLibrary.Tpo -c -o LifetimeLibrary .lo LifetimeLibrary.cpp 在 LifetimeLibrary.cpp:1:0 包含的文件中:../../include/utilspp/singleton/SingletonHolder.hpp:27:19:致命错误:cassert:没有此类文件或目录编译终止。

有没有人在 Mac 上构建这个库时遇到过这个问题?我需要编辑 MakeFile 吗?

谢谢!

4

1 回答 1

2

从code.google.com下载 curlpp打开 Makefile

消除

SUBDIRS = src include examples doc 

添加

SUBDIRS = src include doc

$cd /curlpp-0.7.3/
$make
$sudo make install
于 2013-12-18T13:48:10.190 回答