To help you debug your application, Tuanjie can generate a package that contains symbol files for native Tuanjie libraries. Symbol files contain a table that translates active memory addresses into information you can use, like a method name. The translation process is called symbolication.
There are two types of symbol files:
You can generate symbol files for the following libraries:
libtuanjie
: Tuanjie’s engine code.libil2cpp
: Contains C# scripts from the project converted to C++ code.Tuanjie generates the libtuanjie
symbol files. Hvigor generates the libil2cpp
symbol file.
A public symbol file contains information that resolves function addresses to human-readable strings.This makes public symbol files and packages smaller than debugging symbol files and packages.
A debugging symbol file contains full debugging information and a symbol table. Use it to:
Note: If debugging symbols aren’t available, Tuanjie places a public symbol file in your project at build time. For the libtuanjie
libraries, debugging symbols aren’t available and Tuanjie always generates public symbol files.
You can instruct Tuanjie to include additional symbol files. This is useful if you use shared libraries and want your local debugger, to resolve the shared library stack traces if the application crashes.
To make Tuanjie include a custom symbols file:
.so
file extension.Whenever Tuanjie generates a symbols package, it adds the additional symbol files to the symbols package.
If you want to make Tuanjie include a custom symbols file from a C# script, the TuanjieEditor.OpenHarmony namespace includes the following APIs to set the CPU and Shared Library Type respectively:
Note: The symbols file name must match the name of the shared library that the symbols file is for. For example, if a shared library is called mylibrary.so, the symbols file must also be named mylibrary.so. To avoid file name collisions, the symbols file and the shared library must be in separate directories.
Important: Ensure the symbols file is up to date and compatible with the shared library that contains the executable code. If you don’t, your local debugger will fail to resolve stack traces for code in the shared library.
There are two ways to enable symbols package generation for your application:
To enable symbols package generation through the Build Settings window:
Open the Build Settings window (menu: File > Build Settings).
Select the OpenHarmony platform.
Set Create symbols.zip to one of the following:
After you enable symbols package generation, building your project generates a .zip
file that contains symbol files for the libtuanjie
library. the scripting backend always is IL2CPP, the .zip
also contains a symbol file for the libil2cpp
library. Tuanjie places this symbols package within the output directory.
If you enable Export Project in the OpenHarmony Build Settings, Tuanjie doesn’t build the project. Instead, it exports the project for DevEco Studio, generates symbols for libtuanjie
and libil2cpp
, then places them within entry/symbols/<architecture>/
in the output directory.