summaryrefslogtreecommitdiff
path: root/config/binutils.in
blob: 99b8b9f4dbfa4be0186b61c471114a7d2c6fcc60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Binary utilities menu

menu "Binary utilities"

choice
    bool
    prompt "Binary format:"

config ARCH_BINFMT_ELF
    bool
    prompt "ELF"
    depends on ARCH_USE_MMU || BARE_METAL
    help
      This will make your system build ELF executables,
      suitable for architectures with an MMU.

config ARCH_BINFMT_FLAT
    bool
    prompt "Flat"
    depends on ! ARCH_USE_MMU
    help
      This will build flat binaries, suitable for
      MMU-less architectures.

config ARCH_BINFMT_FDPIC
    bool
    prompt "FD_PIC ELF"
    depends on ! ARCH_USE_MMU
    help
      This will build FD_PIC ELF binaries, suitable for
      MMU-less architectures that still require to use
      shared libraries (FIXME).

endchoice

config BINUTILS
    string

source "config.gen/binutils.in"
source "config.gen/binutils.in.2"

endmenu