Stack trace from command line

Hello,

I was wondering if it is possible to use source/tools/stackTraceDecrypter.jar
from command line to decode a stack trace

the manifest shows no main class

ZZZ@YYY:~/pro$ cat META-INF/MANIFEST.MF
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.9.3
Created-By: 1.7.0_71-b14 (Oracle Corporation)
Built-By: IS2T
Version: stackTraceDecrypter-20170313-1600
Main-Class:

so I do not know how to call it

Thanks a lot

Hello Guido,

Please find attached a command line version of the Stack Trace Reader: stacktracereader_cli.zip (2.1 MB)

The path to VEE_PORT_DIR and VEE_EXECUTABLE_FILE need to be specified:

  • VEE_PORT_DIR: path to the VEE PORT source/ directory.

  • VEE_EXECUTABLE_FILE: path to the application binary file with debug information.

Run ./str.sh to start the tool.

Example of command line to start the tool:

VEE_PORT_DIR=/home/wk/STM32F7508-Platform-CM7hardfp_IAR83-1.5.0/source/ VEE_EXECUTABLE_FILE=/home/wk/HelloWorld/com.microej.Main/application.out ./str.sh

Regards,

Alex

1 Like

Thanks a lot!!

Guido