File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -693,6 +693,10 @@ if(TARGET_IOS OR TARGET_ANDROID)
693
693
else ()
694
694
set (DISABLE_DLLMAP 1)
695
695
endif ()
696
+ if (TARGET_BROWSER)
697
+ # sys/errno.h exists, but just emits a warning and includes errno.h
698
+ unset (HAVE_SYS_ERRNO_H)
699
+ endif ()
696
700
### End of OS specific checks
697
701
698
702
add_subdirectory (mono)
Original file line number Diff line number Diff line change @@ -90,13 +90,13 @@ gboolean mono_using_xdebug;
90
90
/* Counters */
91
91
static guint32 discarded_code ;
92
92
static gint64 discarded_jit_time ;
93
- static guint32 jinfo_try_holes_size ;
94
93
95
94
#define mono_jit_lock () mono_os_mutex_lock (&jit_mutex)
96
95
#define mono_jit_unlock () mono_os_mutex_unlock (&jit_mutex)
97
96
static mono_mutex_t jit_mutex ;
98
97
99
98
#ifndef DISABLE_JIT
99
+ static guint32 jinfo_try_holes_size ;
100
100
static MonoBackend * current_backend ;
101
101
102
102
gpointer
You can’t perform that action at this time.
0 commit comments