1

我想使用 fcgi 和 nginx 用 C++11 编写一个网站。目前只有 Clang++ 结合 libc++ 支持完全 C++11。

但是当我运行我的 fcgi 程序时,当有人通过浏览器请求页面时,我得到一个 seg-fault:似乎 libc++ 不喜欢 fcgi 使用流的方式。

测试代码:

#include <iostream>
#include <sstream>

#include "fcgio.h"


int main() {
    int count = 0;

    FCGX_Request request;

    FCGX_Init();
    FCGX_InitRequest(&request, 0, 0);

    while(FCGX_Accept_r(&request) == 0) {
        fcgi_streambuf cout_fcgi_streambuf(request.out);

        std::ostream fout(&cout_fcgi_streambuf);

        fout << "Content-type: text/html\r\n" <<
               "\r\n" <<
               "<title>CGI Hello!</title>" <<
               "<h1>CGI Hello!</h1>" <<
               "Request number" << ++count << "\n" << std::endl;
    }

    return 0;
}

上面的代码是用以下代码编译的:

clang++ -stdlib=libc++ -o index index.cpp -lfcgi++ -lfcgi -std=c++11 -g

gdb 输出以下内容:

Program received signal SIGSEGV, Segmentation fault.
0x0000000000402bd9 in sputc (this=0x7fffffffe4d0, __c1=0, __c=10 '\n', __c2=4210300) at /usr/include/c++/v1/streambuf:351
351     *__nout_++ = __c;

如果我在没有 -stdlib=libc++ 的情况下编译它,一切正常,除了我不能使用一些 c++11 功能......</p>

有没有办法可以运行我的 fcgi-app 而不会崩溃并使用 libc++?

4

1 回答 1

2

使用相同的工具集我遇到了完全相同的问题。

正如 Dietmar Kühl 指出的那样,libfcgi++ 不是用 libc++ 编译的,这对我来说是个问题。+1000 给他。非常感谢。

作为一个快速的 hacky 测试,我用以下标志重新编译了最新的稳定 libfcgi:

-stdlib=libc++

像往常一样运行./configure,然后在 Makefile 中编辑两行fcgi-dev-kit/libfcgi/Makefile

CXX = clang++
# ....
CXXFLAGS = -g -O2 -std=c++0x -stdlib=libc++

然后make在顶级目录中运行。

例如,与 fcgi-dev-kit/libfcgi/.libs/libfcgi++.a 中的生成库链接,修复了分段错误。

开发工具包可以在这里找到:http: //www.fastcgi.com/drupal/node/5。如果您需要像我一样使用 libc++,您需要找出一个长期的解决方案来链接适当编译的 libfcgi++。

于 2013-09-17T00:10:38.000 回答