mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-14 21:58:44 +08:00
25 lines
422 B
Markdown
25 lines
422 B
Markdown
|
|
||
|
## Coverity Scan Config & Run
|
||
|
Download the Coverity Scan Self-buld and install it.
|
||
|
You will need to configure ARM-NON-EABI- Compiler for it to use:
|
||
|
|
||
|
Configure
|
||
|
|
||
|
```sh
|
||
|
cov-configure --comptype gcc --compiler /opt/devkitpro/devkitARM/bin/arm-none-eabi-gcc
|
||
|
```
|
||
|
|
||
|
Run it (I'm running on Ubuntu)
|
||
|
|
||
|
```sh
|
||
|
cov-build --dir cov-int make all
|
||
|
```
|
||
|
|
||
|
Make a tarball
|
||
|
|
||
|
```sh
|
||
|
tar czvf proxmark3.tgz cov-int
|
||
|
```
|
||
|
|
||
|
Upload it to coverity.com
|