Skip to content

Commit a11a3a3

Browse files
committed
Fix for building C tools with Visual Studio.
1 parent 97c3180 commit a11a3a3

4 files changed

Lines changed: 6 additions & 0 deletions

File tree

docs/Targets.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -579,8 +579,10 @@ HASH=SHA3
579579
### QNX
580580

581581
```sh
582+
cd ~
582583
source qnx700/qnxsdp-env.sh
583584
cd wolfBoot
585+
cp ./config/examples/zynqmp.config .config
584586
make clean
585587
make CROSS_COMPILE=aarch64-unknown-nto-qnx7.0.0-
586588
```

tools/keytools/user_settings.h

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
#ifndef H_USER_SETTINGS_
2727
#define H_USER_SETTINGS_
2828

29+
#include <stdint.h>
30+
2931
/* System */
3032
#define WOLFSSL_GENERAL_ALIGNMENT 4
3133
#define SINGLE_THREADED

tools/keytools/wolfBootKeygenTool.vcxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@
152152
</ItemDefinitionGroup>
153153
<ItemGroup>
154154
<ClCompile Include="..\..\lib\wolfssl\wolfcrypt\src\asn.c" />
155+
<ClCompile Include="..\..\lib\wolfssl\wolfcrypt\src\chacha.c" />
155156
<ClCompile Include="..\..\lib\wolfssl\wolfcrypt\src\coding.c" />
156157
<ClCompile Include="..\..\lib\wolfssl\wolfcrypt\src\ecc.c" />
157158
<ClCompile Include="..\..\lib\wolfssl\wolfcrypt\src\ed25519.c" />

tools/keytools/wolfBootSignTool.vcxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@
152152
</ItemDefinitionGroup>
153153
<ItemGroup>
154154
<ClCompile Include="..\..\lib\wolfssl\wolfcrypt\src\asn.c" />
155+
<ClCompile Include="..\..\lib\wolfssl\wolfcrypt\src\chacha.c" />
155156
<ClCompile Include="..\..\lib\wolfssl\wolfcrypt\src\coding.c" />
156157
<ClCompile Include="..\..\lib\wolfssl\wolfcrypt\src\ecc.c" />
157158
<ClCompile Include="..\..\lib\wolfssl\wolfcrypt\src\ed25519.c" />

0 commit comments

Comments
 (0)