this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

mldr: use bswap_32 instead. Now the whole tree builds

glibc has bswap_32 => __bswap_32 => __builtin_bswap32
Android NDK has bswap_32 => __swap32 => __builtin_bswap32

+2 -1
+2 -1
src/startup/mldr.c
··· 32 32 #include <mach-o/fat.h> 33 33 #include <dlfcn.h> 34 34 #include <endian.h> 35 + #include <byteswap.h> 35 36 #include "elfcalls.h" 36 37 #include "gdb.h" 37 38 #include "commpage.h" ··· 320 321 exit(1); 321 322 } 322 323 323 - #define SWAP32(x) x = __bswap_32(x) 324 + #define SWAP32(x) x = bswap_32(x) 324 325 325 326 if (swap) 326 327 SWAP32(fhdr.nfat_arch);