Skip to content
Snippets Groups Projects
Verified Commit 84cfd12a authored by Adrian Pop's avatar Adrian Pop
Browse files

clang doesn't define __x86__ just __i386__ on 32 bit

parent 8ce4f2ad
No related merge requests found
...@@ -354,7 +354,7 @@ ...@@ -354,7 +354,7 @@
// Processor dependencies // Processor dependencies
// //
#if defined(__x86__) || defined(__x86_64__) #if defined(__x86__) || defined(__x86_64__) || defined(__i386__)
# define _OMNIORB_HOST_BYTE_ORDER_ 1 # define _OMNIORB_HOST_BYTE_ORDER_ 1
#if !defined(SIZEOF_LONG_DOUBLE) #if !defined(SIZEOF_LONG_DOUBLE)
# define SIZEOF_LONG_DOUBLE 12 # define SIZEOF_LONG_DOUBLE 12
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment