Skip to content

Commit

Permalink
Merge pull request #1453 from frank2/cygwin-fix
Browse files Browse the repository at this point in the history
fix compilation on cygwin
  • Loading branch information
serpilliere committed Sep 5, 2023
2 parents 2b8366a + 70052a0 commit e9dee4e
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 e9dee4e

Please sign in to comment.