hc
2023-11-22 f743a7adbd6e230d66a6206fa115b59fec2d88eb
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
comment "Binutils Options"
 
config BR2_PACKAGE_HOST_BINUTILS_SUPPORTS_CFI
   bool
   default y
   depends on !BR2_microblaze
 
config BR2_PACKAGE_BINUTILS_ENABLE_GOLD
   bool "enable gold linker"
 
choice
   prompt "Binutils Version"
   default BR2_BINUTILS_VERSION_2_36_X if !BR2_arc && !BR2_csky
   default BR2_BINUTILS_VERSION_ARC if BR2_arc
   help
     Select the version of binutils you wish to use.
 
config BR2_BINUTILS_VERSION_2_32_X
   bool "binutils 2.32"
   depends on !BR2_csky
 
config BR2_BINUTILS_VERSION_2_35_X
   bool "binutils 2.35.2"
   depends on !BR2_csky
   # https://github.com/uclinux-dev/elf2flt/pull/16
   # https://github.com/uclinux-dev/elf2flt/issues/12
   depends on !BR2_BINFMT_FLAT
 
config BR2_BINUTILS_VERSION_2_36_X
   bool "binutils 2.36.1"
   depends on !BR2_csky
   # https://github.com/uclinux-dev/elf2flt/pull/16
   # https://github.com/uclinux-dev/elf2flt/issues/12
   depends on !BR2_BINFMT_FLAT
 
config BR2_BINUTILS_VERSION_2_37_X
   bool "binutils 2.37"
   # https://github.com/uclinux-dev/elf2flt/pull/16
   # https://github.com/uclinux-dev/elf2flt/issues/12
   depends on !BR2_BINFMT_FLAT
 
config BR2_BINUTILS_VERSION_ARC
   bool "binutils arc (2.34.50)"
   depends on BR2_arc
 
endchoice
 
config BR2_BINUTILS_VERSION
   string
   default "arc-2020.09-release"    if BR2_BINUTILS_VERSION_ARC
   default "2.32"        if BR2_BINUTILS_VERSION_2_32_X
   default "2.35.2"    if BR2_BINUTILS_VERSION_2_35_X
   default "2.36.1"    if BR2_BINUTILS_VERSION_2_36_X
   default "2.37"        if BR2_BINUTILS_VERSION_2_37_X
 
config BR2_BINUTILS_ENABLE_LTO
   bool
 
config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
   string "Additional binutils options"
   default ""
   help
     Any additional binutils options you may want to include.