config/toolchain.in
changeset 1494 0bcc7afb5d42
parent 1425 4131f2e955aa
child 1495 2542421e3321
     1.1 --- a/config/toolchain.in	Fri Jun 26 19:09:22 2009 +0200
     1.2 +++ b/config/toolchain.in	Sun Aug 30 00:35:58 2009 +0200
     1.3 @@ -296,4 +296,42 @@
     1.4  
     1.5  endif # CROSS_NATIVE || CANADIAN
     1.6  
     1.7 +# Kept as a separate if block, even if it could go into the above block,
     1.8 +# because it seems better. No real reason, only that it seems right...
     1.9 +if CANADIAN
    1.10 +
    1.11 +comment "Host specifics"
    1.12 +
    1.13 +choice
    1.14 +    bool
    1.15 +    prompt "|  Install tools wrapper as:"
    1.16 +    default TOOLS_WRAPPER_SHELL
    1.17 +
    1.18 +config TOOLS_WRAPPER_SCRIPT
    1.19 +    bool
    1.20 +    prompt "shell script"
    1.21 +    help
    1.22 +      If your host has a shell, then you should say 'Y' here, to use
    1.23 +      a (very very simple) shell script as wrapper.
    1.24 +      
    1.25 +      See docs/overview.txt, section "Tools wrapper".
    1.26 +
    1.27 +config TOOLS_WRAPPER_EXEC
    1.28 +    bool
    1.29 +    prompt "executable"
    1.30 +    help
    1.31 +      If your host lacks a shell, then you should say 'Y' here, to use
    1.32 +      an executable.
    1.33 +      
    1.34 +      See docs/overview.txt, section "Tools wrapper".
    1.35 +
    1.36 +endchoice
    1.37 +
    1.38 +config TOOLS_WRAPPER
    1.39 +    string
    1.40 +    default "script" if TOOLS_WRAPPER_SCRIPT
    1.41 +    default "exec"   if TOOLS_WRAPPER_EXEC
    1.42 +
    1.43 +endif # CROSS_NATIVE || CANADIAN
    1.44 +
    1.45  endmenu