config/test_suite.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jun 27 21:03:40 2011 +0200 (2011-06-27)
changeset 2526 e5fb003a354c
parent 1965 e3d532dd8b5d
child 3150 1d6fd9bde73c
permissions -rw-r--r--
configure: disable static linking on Darwin

Static liunking is not supported on Darwin, so hide the corresponding
options when the build machine is Darwin.

Reported-by: Andrea Franceschini <therealmorpheu5@gmail.com>
Reported-by: Bryan Hundven <bryanhundven@gmail.com>
Reported-by: "Titus von Boxberg" <titus@v9g.de>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     1 # Test suite config options
     2 
     3 if EXPERIMENTAL
     4 
     5 menu "Test suite"
     6 
     7 config TEST_SUITE
     8     bool
     9 
    10 config TEST_SUITE_GCC
    11     bool
    12     prompt "GCC test suite"
    13     depends on EXPERIMENTAL
    14     select TEST_SUITE
    15     help
    16       Select this option to install the GCC test suite in $CT_PREFIX_DIR/test_suite.
    17 
    18       The GCC test suite includes a collection of various toolchain tests for GCC -
    19       it utilizes the DejaGnu test framework.
    20 
    21       For some tests a network enabled target with ssh server is required.
    22 
    23       A helper Makefile is provided for running the tests - please see the included
    24       README for information on how to run the test suite.
    25 
    26 endmenu
    27 
    28 endif