File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ liborc-configure:
21
21
LDFLAGS=" $( CONFIGURE_LDFLAGS) " \
22
22
CPP=$(CONFIGURE_CPP ) \
23
23
CPPFLAGS=" $( CONFIGURE_CPPFLAGS) " \
24
- PKG_CONFIG_LIBDIR =" $( CONFIGURE_PKG_CONFIG_LIBDIR ) " \
24
+ PKG_CONFIG_PATH =" $( CONFIGURE_PKG_CONFIG_PATH ) " \
25
25
PKG_CONFIG_TOP_BUILD_DIR=/ \
26
26
$(abspath $(liborc_TOP ) ) /configure --host=arm-linux-androideabi \
27
27
--prefix=/system --enable-backend=neon --disable-gtk-doc PACKAGE=liborc && \
Original file line number Diff line number Diff line change 167
167
orc_memcpy (void * ORC_RESTRICT d1 , const void * ORC_RESTRICT s1 , int n )
168
168
{
169
169
OrcExecutor _ex , * ex = & _ex ;
170
- static int p_inited = 0 ;
170
+ static volatile int p_inited = 0 ;
171
171
static OrcCode * c = 0 ;
172
172
void (* func ) (OrcExecutor * );
173
173
255
255
orc_memset (void * ORC_RESTRICT d1 , int p1 , int n )
256
256
{
257
257
OrcExecutor _ex , * ex = & _ex ;
258
- static int p_inited = 0 ;
258
+ static volatile int p_inited = 0 ;
259
259
static OrcCode * c = 0 ;
260
260
void (* func ) (OrcExecutor * );
261
261
You can’t perform that action at this time.
0 commit comments