axmol/tools/tolua
halx99 350a172860 Now lua-binding generator use python3 2023-02-14 23:30:44 +08:00
..
README.md Now lua-binding generator use python3 2023-02-14 23:30:44 +08:00
ax_3d.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_audioengine.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_backend.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_base.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_controller.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_csloader.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_extension.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_navmesh.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_physics.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_physics3d.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_spine.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_studio.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_ui.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_video.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
ax_webview.ini Remove libclang binaries from repo 2023-02-14 23:10:28 +08:00
genbindings.py Merge: 427ae694bd b5cde53994 2023-01-04 21:26:23 +08:00

README.md

How to Use bindings-generator

Prerequisites

  1. Download libclang from https://github.com/axmolengine/buildware/releases/download/llvmorg-15.0.7/llvmorg-15.0.7.zip
  2. Copy libclang.dll/libclang.dylib/libclang.so (match with your OS) to tools/bindings-generator/libclang/, refer to tools/win-ci/genbindings.ps1

On Windows:

  • Make sure that you have installed android-ndk-r19c or later.
  • Install python3.7+(64bit) from https://www.python.org with Add to 'PATH' install option.
  • Install python dependices by pip.
    pip install PyYAML Cheetah3
  • Go to "tools/tolua" folder, and run "genbindings.py". The generated codes will be under "cocos\scripting\auto-generated\lua-bindings".

On MAC:

  • Use Homebrew to install the python and use pip install the python dependencies.
    brew install python3
  • Install python dependices by pip3.
    pip3 install PyYAML Cheetah3
  • Download NDK 64bit r19c or later from Android NDK
  • Run
    export ANDROID_NDK=/path/to/android-ndk-19c
    ./genbindings.py

On Ubuntu Linux 22.04 64bit

  • Install python
    sudo apt-get install python3
  • Install python dependices by pip.
    sudo apt-get install python3-pip
    sudo pip3 install PyYAML Cheetah3
  • Download NDK 64bit r19c or later from Android NDK
  • Go to "tools/tolua", Run
    export ANDROID_NDK=/path/to/android-ndk-r19c
    python3 ./genbindings.py