编译使用spidermonkey的程序时链接器错误

时间:2013-12-31 08:00:01

标签: c++ linker spidermonkey

我一直在努力学习spidermonkey,所以编写了以下代码,改编自this guide,当程序编译正确时,我在链接过程中遇到以下错误:

/usr/bin/ld: cannot open linker script file symverscript: No such file or directory

我使用的是64位Ubuntu 13.10,这里是代码(似乎与问题无关,但不能伤害)

#include <jsapi.h>
#include <iostream>
#include <string>

int main()
{
    std::string script = "var x = 10;x*x;";
    jsval rval;
    JSRuntime* runtime = 0;
    JSContext* context = 0;
    JSObject* globalob = 0;
    if((!(runtime = JS_NewRuntime(1024L*1024L, JS_NO_HELPER_THREADS)))||
        (!(context = JS_NewContext(runtime, 8192)))||
        (!(globalob  = JS_NewObject(context, NULL, NULL, NULL))))
    {
        return 1;
    }
    if(!JS_InitStandardClasses(context, globalob))
    {
        return 1;
    }
    if(!JS_EvaluateScript(context,globalob,script.data(),script.length(),"script",1,&rval))
    {
        return 1;
    }
    std::cout << JSVAL_TO_INT(rval) << "\n";
    JS_DestroyContext(context);
    JS_DestroyRuntime(runtime);
    JS_ShutDown();
    return 0;
}

使用命令

编译
g++ main.cpp -o out $(js24-config --cflags --libs | tr "\n" " ")

1 个答案:

答案 0 :(得分:1)

尝试编写此命令,      g ++ main.cpp -o main -I / usr / local / include / js / -L / usr / local / lib / -lmozjs1.8.5

关于我上面写的路径,你必须编写自己的路径,其中包括库和JSAPI.h文件, 最后一个术语是spidermonkey库,你会在lib文件夹中找到它,对我来说它存在于/ usr / local / lib