config/kernel.in
author Zhenqiang Chen <zhenqiang.chen@linaro.org>
Fri Nov 18 11:32:50 2011 +0800 (2011-11-18)
branch1.13
changeset 2841 64fe22ca6e6f
parent 2017 f637b6c2162b
child 3112 6cb56b3f2d34
permissions -rw-r--r--
cc/gcc: Apply CT_CC_GCC_DISABLE_PCH to do_cc_core.

Otherwise, users have to input --disable-libstdcxx-pch option
when building bare-metal CANADIAN C++ compiler.

Reviewed-by: Michael Hope
Signed-off-by: Zhenqiang Chen <zhenqiang.chen@linaro.org>
(transplanted from e3e1c9d45bddfbfb433ee9d583faf42fa31f50c0)
yann@1
     1
# Kernel options
yann@1
     2
yann@861
     3
menu "Operating System"
yann@861
     4
yann@883
     5
# Config option used throughout the config and code to determine wether
yann@1337
     6
# we have a kernel or not (there might be different bare metal stuff)...
yann@883
     7
config BARE_METAL
yann@883
     8
    bool
yann@883
     9
bartvdrmeulen@2017
    10
config MINGW32
bartvdrmeulen@2017
    11
    bool
bartvdrmeulen@2017
    12
yann@1499
    13
# Each target OS (aka kernel) that support shared libraries can select
yann@1499
    14
# this, so the user can decide whether or not to build a shared library
yann@1499
    15
# enabled toolchain
yann@1499
    16
config KERNEL_SUPPORTS_SHARED_LIBS
yann@1499
    17
    bool
yann@1499
    18
yann@847
    19
config KERNEL
yann@847
    20
    string
yann@847
    21
yann@861
    22
config KERNEL_VERSION
yann@861
    23
    string
yann@850
    24
yann@1870
    25
source "config.gen/kernel.in"
yann@854
    26
yann@1502
    27
comment "Common kernel options"
yann@1502
    28
yann@1502
    29
config SHARED_LIBS
yann@1502
    30
    bool
yann@1502
    31
    prompt "Build shared libraries"
yann@1502
    32
    depends on KERNEL_SUPPORTS_SHARED_LIBS
yann@1502
    33
    default y
yann@1502
    34
    help
yann@1502
    35
      Say 'y' here, unless you don't want shared libraries.
yann@1502
    36
      
yann@1502
    37
      You might not want shared libraries if you're building for a target that
yann@1502
    38
      don't support it (maybe some nommu targets, for example, or bare metal).
yann@1502
    39
yann@1976
    40
source "config.gen/kernel.in.2"
yann@1976
    41
yann@1
    42
endmenu