Skip to content

Commit 1e89ff8

Browse files
Address PR review comments 51-55
- Remove unnecessary DEBUG flag passing from examples/Makefile (Comment 51) - Fix 80 char line limit in wolfhsm/wh_settings.h (Comment 52) - Remove DEBUG_CRYPTOCB/DEBUG_WOLFSSL macro dependencies (Comment 53) - Rename hexdump macros to WH_DEBUG_VERBOSE_HEXDUMP (Comment 54) - Simplify WH_TEST_PRINT macro definition (Comment 55) All changes verified with local tests (ASAN=1 TESTWOLFCRYPT=1) Co-Authored-By: [email protected] <[email protected]>
1 parent 1ef8bde commit 1e89ff8

File tree

6 files changed

+102
-114
lines changed

6 files changed

+102
-114
lines changed

examples/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
all: wh_posix_client wh_posix_server
55

66
wh_posix_client:
7-
make -C posix/wh_posix_client $(if $(DEBUG),DEBUG=$(DEBUG)) $(if $(DEBUG_VERBOSE),DEBUG_VERBOSE=$(DEBUG_VERBOSE))
7+
make -C posix/wh_posix_client
88

99
wh_posix_server:
10-
make -C posix/wh_posix_server $(if $(DEBUG),DEBUG=$(DEBUG)) $(if $(DEBUG_VERBOSE),DEBUG_VERBOSE=$(DEBUG_VERBOSE))
10+
make -C posix/wh_posix_server
1111

1212
clean:
13-
make -C posix/wh_posix_client clean $(if $(DEBUG),DEBUG=$(DEBUG)) $(if $(DEBUG_VERBOSE),DEBUG_VERBOSE=$(DEBUG_VERBOSE))
14-
make -C posix/wh_posix_server clean $(if $(DEBUG),DEBUG=$(DEBUG)) $(if $(DEBUG_VERBOSE),DEBUG_VERBOSE=$(DEBUG_VERBOSE))
13+
make -C posix/wh_posix_client clean
14+
make -C posix/wh_posix_server clean
1515

0 commit comments

Comments
 (0)