hello world示例中的Boost.python错误

时间:2011-05-28 14:36:21

标签: c++ python boost

当我尝试使用bjam编译hello world示例时,我一直收到错误。 Jamroot文件中的所有内容都运行正常,除了最后一行(当我评论此行时,没有发生错误):

run-test hello : hello_ext hello.py ;

错误是:

capture-output bin/hello.test/gcc-4.5.2/debug/hello
export: 3: LD_LIBRARY_PATH: bad variable name

    LD_LIBRARY_PATH=/home/hoangtu/Programs/boost_1_46_1/bin.v2/libs/python/build/gcc-4.5.2/debug:/home/hoangtu/Programs/boost_1_46_1/libs/python/example/tutorial/bin/gcc-4.5.2/debug:/usr/bin:/usr/lib:/usr/lib32:/usr/lib64:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH

    PYTHONPATH=bin/gcc-4.5.2/debug
export PYTHONPATH
 "/usr/bin/python2.7" "hello.py"   > "bin/hello.test/gcc-4.5.2/debug/hello.output" 2>&1
    status=$?
    echo >> "bin/hello.test/gcc-4.5.2/debug/hello.output"
    echo EXIT STATUS: $status >> "bin/hello.test/gcc-4.5.2/debug/hello.output"
    if test $status -eq 0 ; then
        cp "bin/hello.test/gcc-4.5.2/debug/hello.output" "bin/hello.test/gcc-4.5.2/debug/hello"
    fi
    verbose=0
    if test $status -ne 0 ; then
        verbose=1
    fi
    if test $verbose -eq 1 ; then
        echo ====== BEGIN OUTPUT ======
        cat "bin/hello.test/gcc-4.5.2/debug/hello.output"
        echo ====== END OUTPUT ======
    fi
    exit $status

...failed capture-output bin/hello.test/gcc-4.5.2/debug/hello...
...failed updating 1 target...
...skipped 1 target...

1 个答案:

答案 0 :(得分:0)

我在构建adobe asl库时遇到过类似的问题。问题是从ubuntu存储库bjam(3.1.16)安装的版本。从sourceforge(3.1.18)安装最新的bjam后,一切正常。

PS。操作系统是Ubuntu 11.04