Skip to content

Commit c89b858

Browse files
committed
Cleanup, revert some Makefile edits
1 parent 1abf736 commit c89b858

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

CMakeSettings.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
{
2-
"configurations": [
3-
{
4-
"name": "x64-Debug",
5-
"generator": "Ninja",
6-
"configurationType": "Debug",
7-
"inheritEnvironments": [ "msvc_x64_x64" ],
8-
"buildRoot": "${projectDir}\\out\\build\\${name}",
9-
"installRoot": "${projectDir}\\out\\install\\${name}",
10-
"cmakeCommandArgs": "",
11-
"buildCommandArgs": "",
12-
"ctestCommandArgs": ""
13-
}
14-
]
15-
}
1+
{
2+
"configurations": [
3+
{
4+
"name": "x64-Debug",
5+
"generator": "Ninja",
6+
"configurationType": "Debug",
7+
"inheritEnvironments": [ "msvc_x64_x64" ],
8+
"buildRoot": "${projectDir}\\out\\build\\${name}",
9+
"installRoot": "${projectDir}\\out\\install\\${name}",
10+
"cmakeCommandArgs": "",
11+
"buildCommandArgs": "",
12+
"ctestCommandArgs": ""
13+
}
14+
]
15+
}

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ else
5151
endif
5252
endif
5353

54-
WOLFCRYPT_OBJS?=
54+
WOLFCRYPT_OBJS:=
5555
SECURE_OBJS:=
5656
PUBLIC_KEY_OBJS:=
5757
WOLFHSM_OBJS:=
@@ -135,11 +135,11 @@ ifeq ($(VISUALGDB),1)
135135
$(CMSIS_LOCAL_OBJ_DIR)/%.o: $(VISUALGDB_CMSIS_SRC)/%.c
136136
@mkdir -p $(CMSIS_LOCAL_OBJ_DIR)
137137
$(CC) $(CFLAGS) -c $< -o $@
138+
else
139+
OBJS+=$(WOLFCRYPT_OBJS)
138140
endif
139141
# ============================================================================
140142

141-
-include .config
142-
143143
$(info WOLFCRYPT_OBJS=$(WOLFCRYPT_OBJS))
144144
$(info MATH_OBJS=$(MATH_OBJS))
145145

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -737,12 +737,12 @@ Use `make keysclean` to delete keys and regenerate.
737737
* RP2350 (Raspberry Pi Pico 2, ARM Cortex-M33 with TrustZone)
738738
* NXP MCXA153
739739
* NXP MCXW716
740-
* STM32F1 series (STM32F103 “Blue Pill” board)
740+
* STM32F1 series (STM32F103 "Blue Pill" board)
741741
* Improvements to supported targets
742742
* Xilinx UltraScale+ (ZynqMP)
743743
* Added hardware-accelerated SHA3 hashing via the CSU engine
744744
* Added support for enabling JTAG at runtime when `CSU_DEBUG` is set
745-
* Introduced support for the device’s PUF (Physically Unclonable Function) for unique key generation and secure key storage (requires eFuses)
745+
* Introduced support for the device's PUF (Physically Unclonable Function) for unique key generation and secure key storage (requires eFuses)
746746
* Renesas RX
747747
* Added option for TSIP hardware crypto engine
748748
* Infineon TriCore (AURIX TC3xx)

test-app/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ ifeq ($(TARGET),sama5d3)
201201
LSCRIPT_TEMPLATE:=$(ARCH)-$(TARGET).ld
202202
endif
203203

204-
ifeq ($(TARGET),stm32l4_disabled)
204+
ifeq ($(TARGET),stm32l4)
205205
APP_OBJS+=$(STM32CUBE)/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_flash.o
206206
APP_OBJS+=$(STM32CUBE)/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_flash_ex.o
207207
CFLAGS+=-DSTM32L4A6xx -DUSE_HAL_DRIVER -Isrc -Ihal \

0 commit comments

Comments
 (0)