2

以下程序中止pointer being freed was not allocated

#include <boost/program_options.hpp>

int main(int argc, char* argv[])
{
    boost::program_options::positional_options_description positional;
    return 0;
}

我在 OS X 10.6.7 上编译并将程序与 Boost 1.46.1 链接,我将其构建到 /usr/local 中。除了我(据说)链接的那个之外,我找不到任何已安装的 libboost_program_options。

知道是什么导致了这次崩溃吗?


编辑:至于堆栈跟踪,程序

#include <boost/program_options.hpp>
#include <execinfo.h>

int main(int argc, char* argv[])
{
    boost::program_options::positional_options_description positional;
    void* callstack[128];
    int i, frames = backtrace(callstack, 128);
    char** strs = backtrace_symbols(callstack, frames);
    for (i = 0; i < frames; ++i) {
        printf("%s\n", strs[i]);
    }
    free(strs);
    return 0;
}

建造为

g++ -Wp,-MMD,.make-debug/main.dd -Wall -g3 -I/usr/local/include -c main.cc -o .make-debug/main.o
g++ -o sandbox .make-debug/main.o -lboost_program_options -L/usr/local/lib 

并作为 ./sandbox 运行产生输出

0   sandbox                             0x00000001000017bf main + 57
1   sandbox                             0x0000000100001764 start + 52
2   ???                                 0x0000000000000001 0x0 + 1
sandbox(50587) malloc: *** error for object 0x7fff70506500: pointer being freed was not al
located
*** set a breakpoint in malloc_error_break to debug

Command terminated

至于构建 Boost:

$ cd boost_1_46_1
$ ./bootstrap.sh --prefix=/usr/local
$ ./bjam toolset=darwin-4.2

这是我的 ~/user-config.jam:

using darwin : 4.0 : g++-4.0 ;
using darwin : 4.2 : g++-4.2 ;
using darwin : 4.5.1 : /Users/matan/usr/bin/g++ ;
4

2 回答 2

2

我无法重现

macmini:stackoverflow samm$ cat po.cc
#include <boost/program_options.hpp>
#include <boost/version.hpp>

#include <iostream>

int
main(int argc, char* argv[])
{
    std::cout << BOOST_LIB_VERSION << std::endl;
    boost::program_options::positional_options_description positional;
    return 0;
}
macmini:stackoverflow samm$ g++ -I /opt/local/include -L/opt/local/lib -lboost_program_options po.cc
macmini:stackoverflow samm$ ./a.out
1_46_1
macmini:stackoverflow samm$ 

你应该用你用来构建 boost 的步骤来更新你的问题,特别是 bjam 的论点。

于 2011-05-16T01:02:02.487 回答
1

我想我解决了这个问题,但我对我的解决方案不满意。我忘了提到我之前在 /usr/local 中安装了带有 --program-suffix=-4.6 的 gcc 4.6.0。卸载它并重建 Boost 解决了这个问题。然后,除了 XCode 附带的 gcc-4.0 和 gcc-4.2 之外,我没有安装任何编译器。大概 gcc-4.6 文件干扰了 gcc-4.0 文件或 darwin 工具集。

于 2011-05-21T19:35:55.963 回答