Giter VIP home page Giter VIP logo

Comments (4)

deathemperor avatar deathemperor commented on August 22, 2024

I may use this wrongly (new to xcode and iOS) but how do I use pbc for quick-cocos2dx in XCode?

from pbc.

xpol avatar xpol commented on August 22, 2024

You should link luaopen_protobuf_c statically by do the follow:

static luaL_Reg modules[] = {
    {"protobuf.c", luaopen_protobuf_c},
    {NULL, NULL}
};

void preload_lua_modules(lua_State *L)
{
    // load extensions
    luaL_Reg* lib = modules;
    lua_getglobal(L, "package");
    lua_getfield(L, -1, "preload");
    for (; lib->func; lib++)
    {
        lua_pushcfunction(L, lib->func);
        lua_setfield(L, -2, lib->name);
    }
    lua_pop(L, 2);
}

and call preload_lua_modules after create lua state.

from pbc.

xpol avatar xpol commented on August 22, 2024

Your error is nothing to do with pbc at all.
Its how Lua load statically linked modules.

from pbc.

deathemperor avatar deathemperor commented on August 22, 2024

thanks I got it working with XCode

from pbc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.