Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vshymanskyy committed Aug 31, 2022
1 parent 89964f4 commit e43e930
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,7 @@ jobs:
-Dd_m3LogCodePages=1 \
-Dd_m3LogRuntime=1 \
-Dd_m3LogNativeStack=1 \
-Dd_m3RecordBacktraces=1 \
-I../source ../source/*.c ../platforms/app/main.c \
-O3 -g0 -lm \
-o wasm3
Expand Down
2 changes: 1 addition & 1 deletion source/m3_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
# endif

# ifndef d_m3RecordBacktraces
# define d_m3RecordBacktraces 1
# define d_m3RecordBacktraces 0
# endif

# ifndef d_m3EnableExceptionBreakpoint
Expand Down
2 changes: 1 addition & 1 deletion source/wasm3.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "wasm3_defs.h"

// Constants
#define M3_BACKTRACE_TRUNCATED (void*)(SIZE_MAX)
#define M3_BACKTRACE_TRUNCATED (IM3BacktraceFrame)(SIZE_MAX)

#if defined(__cplusplus)
extern "C" {
Expand Down

0 comments on commit e43e930

Please sign in to comment.