summaryrefslogtreecommitdiff
path: root/config/binutils.in
blob: a0fe0ef6194bcb1c041c18d9c3dbf9a770918e94 (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
43
44
# Binary utilities menu

menu "Binary utilities"

choice
    bool
    prompt "Binary format:"

if ARCH_USE_MMU

config ARCH_BINFMT_ELF
    bool
    prompt "ELF"
    help
      This will make your system build ELF exectubales,
      suitable for architectures with an MMU.

endif # ARCH_USE_MMU

if ! ARCH_USE_MMU

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

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

endif # ! ARCH_USE_MMU

endchoice

source config/binutils/binutils.in
source config/binutils/elf2flt.in

endmenu