mirror of
https://github.com/stacksmashing/LPCClocklessAnalyzer.git
synced 2026-01-30 19:08:38 +03:00
36 lines
636 B
Markdown
36 lines
636 B
Markdown
# LPCClocklessAnalyzer
|
|
|
|
This is an analyzer for LPC TPM traffic that does not require the clock signal.
|
|
|
|
## Building this Analyzer
|
|
|
|
### Windows
|
|
|
|
```bat
|
|
mkdir build
|
|
cd build
|
|
cmake .. -A x64
|
|
cmake --build .
|
|
:: built analyzer will be located at SampleAnalyzer\build\Analyzers\Debug\SimpleSerialAnalyzer.dll
|
|
```
|
|
|
|
### MacOS
|
|
|
|
```bash
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
cmake --build .
|
|
# built analyzer will be located at SampleAnalyzer/build/Analyzers/libSimpleSerialAnalyzer.so
|
|
```
|
|
|
|
### Linux
|
|
|
|
```bash
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
cmake --build .
|
|
# built analyzer will be located at SampleAnalyzer/build/Analyzers/libSimpleSerialAnalyzer.so
|
|
```
|