Skip to content

Commit

Permalink
fix compilation on cygwin
Browse files Browse the repository at this point in the history
  • Loading branch information
frank2 committed Jul 8, 2023
1 parent 00d4fd4 commit 70052a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miasm/runtime/int_lib.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
#define XSTR(a) STR(a)
#define SYMBOL_NAME(name) XSTR(__USER_LABEL_PREFIX__) #name

#if defined(__ELF__) || defined(__MINGW32__) || defined(__wasm__)
#if defined(__ELF__) || defined(__MINGW32__) || defined(__CYGWIN__) || defined(__wasm__)
#define COMPILER_RT_ALIAS(name, aliasname) \
COMPILER_RT_ABI __typeof(name) aliasname __attribute__((__alias__(#name)));
#elif defined(__APPLE__)
Expand Down

0 comments on commit 70052a0

Please sign in to comment.