mirror of git://sourceware.org/git/glibc.git
* scripts/check-c++-types.sh: Don't use -fnu89-inline option.
This commit is contained in:
parent
3771196d1d
commit
a53fa282ac
|
@ -1,5 +1,7 @@
|
||||||
2007-05-10 Ulrich Drepper <drepper@redhat.com>
|
2007-05-10 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* scripts/check-c++-types.sh: Don't use -fnu89-inline option.
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/sched_setaffinity.c
|
* sysdeps/unix/sysv/linux/sched_setaffinity.c
|
||||||
(__sched_setaffinity_new): If syscall was successful and
|
(__sched_setaffinity_new): If syscall was successful and
|
||||||
RESET_VGETCPU_CACHE is defined, use it before returning.
|
RESET_VGETCPU_CACHE is defined, use it before returning.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
# Copyright (C) 2003, 2005, 2006 Free Software Foundation, Inc.
|
# Copyright (C) 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
|
|
||||||
# The GNU C Library is free software; you can redistribute it and/or
|
# The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
#
|
#
|
||||||
data=$1
|
data=$1
|
||||||
shift
|
shift
|
||||||
cxx="$*"
|
cxx=$(echo $* | sed 's/-fgnu89-inline//')
|
||||||
while read t; do
|
while read t; do
|
||||||
echo -n "$t:"
|
echo -n "$t:"
|
||||||
$cxx -S -xc++ -o - -D_GNU_SOURCE <(cat <<EOF
|
$cxx -S -xc++ -o - -D_GNU_SOURCE <(cat <<EOF
|
||||||
|
|
Loading…
Reference in New Issue