Skip to content

Commit

Permalink
ubuntu: Add ASAN build
Browse files Browse the repository at this point in the history
Build with `--build-var=CC=clang --build-var=ASAN=1`
The resulting binary doesn't work, something to do with IPC (the ubuntu-specific part), but it's a start.

cc @pimvanpelt

CL: ubuntu: Add ASAN build

PUBLISHED_FROM=bb637cfb36439c842337a52ef7a1e1ad5d06f8d2
  • Loading branch information
Deomid Ryabkov authored and cesantabot committed Feb 19, 2019
1 parent be4fb5d commit e773436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cryptoauthlib/lib/basic/atca_helpers.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ ATCA_STATUS atcab_printbin(uint8_t *binary, int binLen, bool addspace) {
int lineLen = 16;

// Verify the inputs
if ((binary == NULL)) return ATCA_BAD_PARAM;
if (binary == NULL) return ATCA_BAD_PARAM;

// Set the line length
lineLen = addspace ? 16 : 32;
Expand Down

0 comments on commit e773436

Please sign in to comment.