OSDN Git Service

Rename HAVE_NO_SHARED to ARCH_HAS_NO_SHARED, otherwise it's too confusing
[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         string
8         default "sparc"
9
10 config FORCE_OPTIONS_FOR_ARCH
11         bool
12         default y
13         select ARCH_BIG_ENDIAN
14
15 config ARCH_CFLAGS
16         string
17
18 choice
19         prompt "Target Processor Type"
20         default CONFIG_SPARC_V8
21         help
22           This is the processor type of your CPU. This information is used for
23           optimizing purposes.  Building for a v8 SPARC is pretty safe nowadays.
24
25           Warning: shared library support requires v8 or better, so building for 
26           SPARC v7 will give you only static support.
27
28 config CONFIG_SPARC_V7
29         select ARCH_HAS_NO_SHARED
30         bool "SPARC v7"
31
32 config CONFIG_SPARC_V8
33         bool "SPARC v8"
34
35 config CONFIG_SPARC_V9
36         bool "SPARC v9"
37
38 config CONFIG_SPARC_V9B
39         bool "SPARC v9b"
40
41 endchoice