Skip to content

Commit

Permalink
Merge branch 'master' into configure-disable-shared
Browse files Browse the repository at this point in the history
  • Loading branch information
cognet authored Mar 20, 2024
2 parents 54602b2 + 59a310f commit 5b75207
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ generate_stdout()
echo " LDNAME_MAJOR = $LDNAME_MAJOR"
echo " LDFLAGS = $LDFLAGS"
echo " SHARED_LIB = `expr $DISABLE_SHARED = 0`"
echo " STATIC_LIB = $DISABLE_STATIC"
echo " STATIC_LIB = `expr $DISABLE_STATIC = 0`"
echo " GZIP = $GZIP"
echo " CORES = $CORES"
echo " POINTER_PACK = $POINTER_PACK_ENABLE"
Expand All @@ -177,14 +177,14 @@ generate_stdout()

for option; do
case "$option" in
*=?*)
--*=?*)
optname=`echo $option|cut -c 3-`
value=`expr "$optname" : '[^=]*=\(.*\)'`
;;
*=)
--*=)
value=
;;
*)
--*)
value=yes
;;
esac
Expand Down Expand Up @@ -322,8 +322,8 @@ for option; do
fi
;;
*=*)
optname=`echo $option|cut -c 3-`
NAME=`expr "$optname" : '\([^=]*\)='`
value=`echo $option|cut -d '=' -f 2-`
NAME=`expr "$option" : '\([^=]*\)='`
eval "$NAME='$value'"
export $NAME
;;
Expand Down
2 changes: 1 addition & 1 deletion include/gcc/x86_64/ck_pr.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ ck_pr_load_ptr_2(const void *t, void *v)

#define CK_PR_LOAD_2(S, W, T) \
CK_CC_INLINE static void \
ck_pr_md_load_##S##_##W(const T t[2], T v[2]) \
ck_pr_md_load_##S##_##W(const T t[W], T v[W]) \
{ \
ck_pr_load_64_2((const uint64_t *)(const void *)t, \
(uint64_t *)(void *)v); \
Expand Down

0 comments on commit 5b75207

Please sign in to comment.