mirror of git://sourceware.org/git/glibc.git
Fix lock elision help text in INSTALL and configure
This commit is contained in:
parent
3f16954315
commit
52dfbe137e
|
@ -1,3 +1,9 @@
|
||||||
|
2013-07-04 Siddhesh Poyarekar <siddhesh@redhat.com>
|
||||||
|
|
||||||
|
* configure.in (--enable-lock-elision): Fix message text.
|
||||||
|
* INSTALL: Regenerate.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2013-07-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
|
2013-07-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
|
||||||
|
|
||||||
* sysdeps/powerpc/fpu/libm-test-ulps: Update.
|
* sysdeps/powerpc/fpu/libm-test-ulps: Update.
|
||||||
|
|
2
INSTALL
2
INSTALL
|
@ -134,7 +134,7 @@ will be used, and CFLAGS sets optimization options for the compiler.
|
||||||
dynamic tests so that they can be invoked directly.
|
dynamic tests so that they can be invoked directly.
|
||||||
|
|
||||||
`--enable-lock-elision=yes'
|
`--enable-lock-elision=yes'
|
||||||
Enable lock elision for pthread mutexes and rwlocks by default.
|
Enable lock elision for pthread mutexes by default.
|
||||||
|
|
||||||
`--build=BUILD-SYSTEM'
|
`--build=BUILD-SYSTEM'
|
||||||
`--host=HOST-SYSTEM'
|
`--host=HOST-SYSTEM'
|
||||||
|
|
|
@ -1401,8 +1401,7 @@ Optional Features:
|
||||||
initialize __stack_chk_guard canary with a random
|
initialize __stack_chk_guard canary with a random
|
||||||
number at program start
|
number at program start
|
||||||
--enable-lock-elision=yes/no
|
--enable-lock-elision=yes/no
|
||||||
Enable lock elision for pthread mutexes and rwlocks
|
Enable lock elision for pthread mutexes by default
|
||||||
by default
|
|
||||||
--enable-add-ons[=DIRS...]
|
--enable-add-ons[=DIRS...]
|
||||||
configure and build add-ons in DIR1,DIR2,... search
|
configure and build add-ons in DIR1,DIR2,... search
|
||||||
for add-ons if no parameter given
|
for add-ons if no parameter given
|
||||||
|
|
|
@ -186,7 +186,7 @@ fi
|
||||||
|
|
||||||
AC_ARG_ENABLE([lock-elision],
|
AC_ARG_ENABLE([lock-elision],
|
||||||
AC_HELP_STRING([--enable-lock-elision[=yes/no]],
|
AC_HELP_STRING([--enable-lock-elision[=yes/no]],
|
||||||
[Enable lock elision for pthread mutexes and rwlocks by default]),
|
[Enable lock elision for pthread mutexes by default]),
|
||||||
[enable_lock_elision=$enableval],
|
[enable_lock_elision=$enableval],
|
||||||
[enable_lock_elision=no])
|
[enable_lock_elision=no])
|
||||||
if test "$enable_lock_elision" = yes ; then
|
if test "$enable_lock_elision" = yes ; then
|
||||||
|
|
Loading…
Reference in New Issue