config/test_suite.in
author Matthieu Crapet <mcrapet@gmail.com>
Wed Jun 06 12:03:12 2012 +0200 (2012-06-06)
changeset 2991 252ade1e9e17
parent 1965 e3d532dd8b5d
child 3150 1d6fd9bde73c
permissions -rw-r--r--
libc/eglibc: fix missing LIBC_TRY_CC_OPTION definition (eglibc 2.15)

Upstream SVN is currently broken:
http://www.eglibc.org/svn/branches/eglibc-2_15/libc/

LIBC_TRY_CC_OPTION macro is not defined in aclocal.m4.
This patch fix the configure script.

Once upstream branch will be fixed this patch could be reverted.

Related patch (committed to eglibc trunk):
Use autoconf macro for testing compiler options with empty input
http://sourceware.org/ml/libc-alpha/2012-03/msg00816.html

Signed-off-by: Matthieu Crapet <mcrapet@gmail.com>

diff -r 1f6c8e4b2b92 -r d10afc5bcc25
patches/eglibc/2_15/110-aclocal-LIBC_TRY_CC_OPTION.patch
mgl@1965
     1
# Test suite config options
mgl@1965
     2
mgl@1965
     3
if EXPERIMENTAL
mgl@1965
     4
mgl@1965
     5
menu "Test suite"
mgl@1965
     6
mgl@1965
     7
config TEST_SUITE
mgl@1965
     8
    bool
mgl@1965
     9
mgl@1965
    10
config TEST_SUITE_GCC
mgl@1965
    11
    bool
mgl@1965
    12
    prompt "GCC test suite"
mgl@1965
    13
    depends on EXPERIMENTAL
mgl@1965
    14
    select TEST_SUITE
mgl@1965
    15
    help
mgl@1965
    16
      Select this option to install the GCC test suite in $CT_PREFIX_DIR/test_suite.
mgl@1965
    17
mgl@1965
    18
      The GCC test suite includes a collection of various toolchain tests for GCC -
mgl@1965
    19
      it utilizes the DejaGnu test framework.
mgl@1965
    20
mgl@1965
    21
      For some tests a network enabled target with ssh server is required.
mgl@1965
    22
benoit@2484
    23
      A helper Makefile is provided for running the tests - please see the included
mgl@1965
    24
      README for information on how to run the test suite.
mgl@1965
    25
mgl@1965
    26
endmenu
mgl@1965
    27
mgl@1965
    28
endif