当前位置 : 主页 > 网络编程 > lua >

链接器 – Luajit:将字节码编译为对象格式

来源:互联网 收集:自由互联 发布时间:2021-06-23
关于-b选项的Luajit手册说: The output file type is auto-detected from the extension of the output file name: c — C source file, exported bytecode data. h — C header file, static bytecode data. obj or o — Object file, exported
关于-b选项的Luajit手册说:

The output file type is auto-detected from the extension of the output file name:

  • c — C source file, exported bytecode data.
  • h — C header file, static bytecode data.
  • obj or o — Object file, exported bytecode data (OS- and architecture-specific).
  • raw or any other extension — Raw bytecode file (portable).

将它编译为目标文件意味着什么?我知道它生成一个文件,然后可以与从C或C代码生成的其他目标文件链接.

但这是如何工作的?如何使用其他C代码生成的目标文件?在哪种情况下你会这样做?

它将模块的字节码嵌入到常量数组中.

如果然后从可执行文件或共享库中导出此数组,则require将能够在那里找到它(因此不需要搜索.lua源文件.)

网友评论