OSDN Git Service

Remove HAVE_ELF
[uclinux-h8/uClibc.git] / extra / Configs / Config.sparc
1 #
2 # For a description of the syntax of this configuration file,
3 # see extra/config/Kconfig-language.txt
4 #
5
6 config TARGET_ARCH
7         default "sparc"
8
9 config ARCH_SUPPORTS_BIG_ENDIAN
10         bool
11         default y
12
13 config ARCH_CFLAGS
14         string
15
16 config LIBGCC_CFLAGS
17         string
18
19 choice
20         prompt "Target Processor Type"
21         default CONFIG_SPARC_V8
22         help
23           This is the processor type of your CPU. This information is used for
24           optimizing purposes.  Building for a v8 SPARC is pretty safe nowadays.
25
26           Warning: shared library support requires v8 or better, so building for 
27           SPARC v7 will give you only static support.
28
29 config CONFIG_SPARC_V7
30         select HAVE_NO_SHARED
31         bool "SPARC v7"
32
33 config CONFIG_SPARC_V8
34         bool "SPARC v8"
35
36 config CONFIG_SPARC_V9
37         bool "SPARC v9"
38
39 config CONFIG_SPARC_V9B
40         bool "SPARC v9b"
41
42 endchoice