config/companion_libs.in
changeset 1761 88020b2c3246
parent 1496 75a766c20552
child 1808 a1370757e6a1
     1.1 --- a/config/companion_libs.in	Sun Aug 30 01:00:19 2009 +0200
     1.2 +++ b/config/companion_libs.in	Tue Jan 12 19:24:03 2010 +0100
     1.3 @@ -91,4 +91,35 @@
     1.4        
     1.5        Please note that for now, crosstool-NG can only build GMP and MPFR so.
     1.6  
     1.7 +choice
     1.8 +    bool
     1.9 +    prompt "|  Install tools wrapper as:"
    1.10 +    depends on WRAPPER_NEEDED
    1.11 +    default TOOLS_WRAPPER_SHELL
    1.12 +
    1.13 +config TOOLS_WRAPPER_SCRIPT
    1.14 +    bool
    1.15 +    prompt "shell script"
    1.16 +    help
    1.17 +      If your host has a shell, then you should say 'Y' here, to use
    1.18 +      a (very very simple) shell script as wrapper.
    1.19 +      
    1.20 +      See docs/overview.txt, section "Tools wrapper".
    1.21 +
    1.22 +config TOOLS_WRAPPER_EXEC
    1.23 +    bool
    1.24 +    prompt "executable"
    1.25 +    help
    1.26 +      If your host lacks a shell, then you should say 'Y' here, to use
    1.27 +      an executable.
    1.28 +      
    1.29 +      See docs/overview.txt, section "Tools wrapper".
    1.30 +
    1.31 +endchoice
    1.32 +
    1.33 +config TOOLS_WRAPPER
    1.34 +    string
    1.35 +    default "script" if TOOLS_WRAPPER_SCRIPT
    1.36 +    default "exec"   if TOOLS_WRAPPER_EXEC
    1.37 +
    1.38  endmenu