flutter-tizen / engine

The Flutter engine
https://flutter.dev
BSD 3-Clause "New" or "Revised" License
6 stars 19 forks source link

[ci] Publish debug symbols #272

Closed swift-kim closed 2 years ago

swift-kim commented 2 years ago

Publish unstripped artifacts so that they can be used for symbolicating native stack traces (for live debugging and debugging crash dumps).

By default level 0 (g0) symbols are generated from optimized builds. If you want to use the symbols for general purpose debugging rather than just symbolication, it is recommended to use level 2 (g2) symbols (which have more than 5 times the size) by manually configuring the build.

The detailed instructions on how to use the symbols will be provided later.