summaryrefslogtreecommitdiffstats
path: root/Kconfig
blob: 4490eaed1a64c87a3af34243c75cb76eb1e448e4 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#
# Kconfig: Main menu structure definition
# Copyright (C) Robert Schwebel <r.schwebel@pengutronix.de> 2005, 2006
#

config BUILD_TOOLCHAIN
	bool
	default y

config PROJECT
	string
	prompt "Project Name        "
	help
	  Name of this project; each PTXdist "Project" specifies a unique
	  configuration for an embedded Linux project.

	  Usually you don't have to set this config option; change it
	  only if you want to have some non-default name.

source "workspace/rules/libc.in"

if LIBC_GLIBC
source "workspace/rules/glibc.in"
source "workspace/rules/glibc-headers.in"
source "workspace/rules/glibc-ports.in"
source "workspace/rules/glibc-linuxthreads.in"
endif

if LIBC_UCLIBC
source "workspace/rules/uclibc.in"
source "workspace/rules/uclibc-headers.in"
endif

if LIBC_NEWLIB
source "workspace/rules/newlib.in"
endif

if LIBC_AVR_8
source "workspace/rules/avrlib.in"
endif

if LIBC_MINGW
source "workspace/rules/mingw-runtime.in"
source "workspace/rules/mingw-runtime-headers.in"
source "workspace/rules/w32api.in"
source "workspace/rules/w32api-headers.in"
endif

source "workspace/rules/cross-binutils.in"
source "workspace/rules/kernel-headers.in"
source "workspace/rules/cross-gcc.in"
source "workspace/rules/cross-gdb.in"
source "workspace/rules/cross-toolchain.in"
source "workspace/rules/host-gmp.in"
source "workspace/rules/host-mpfr.in"
source "workspace/rules/host-dejagnu.in"

comment "                  "

choice
	prompt "architecture      "

        config ARCH_ARM
                bool "arm    "

	config ARCH_M68K
		bool "m68k   "

	config ARCH_MIPS
		bool "mips   "

        config ARCH_POWERPC
                bool "powerpc"

	config ARCH_I386
		bool "i368   "

	config ARCH_AVR
		bool "AVR-8  "

	help
	  This option specifies the toolchain architecture. It corresponds to
	  the arch/ directory of the Linux kernel.

endchoice

config ARCH
	string
	default "arm" if ARCH_ARM
	default "m68k" if ARCH_M68K
	default "mips" if ARCH_MIPS
	default "powerpc" if ARCH_POWERPC
	default "i386" if ARCH_I386
    default "avr" if ARCH_AVR

config GNU_TARGET
	string
	prompt "toolchain target"
	help
	  The GNU_TARGET specifies which toolchain variant is to be
	  built.

config COMPILER_PREFIX
	string
	default "${PTXCONF_GNU_TARGET}-"

config TOOLCHAIN_DEBUG
	bool
	prompt "debuggable toolchain internals"
	help
	  Select this if you want to debug the glibc/libstdc++ internals.
	  Note: this enlarges your toolchain at about 500 MB.
	

menu "misc                        "

config CONFIGFILE_VERSION
	string
	prompt "ptxdist version"
	default "0.10.7"
	help
	  Specify the PTXdist version this configuration was tested with
	  here. This is an additional sanity check to make sure that
	  only tested versions are built.

config PREFIX_KERNEL
	string
	depends on KERNEL_HEADERS_SANIZIZED
	default "-sanitized"

config PREFIX_FIRST
	string
	prompt "first prefix"
	default "/opt/${PTXCONF_PROJECT}"
	help
	  Your toolchain will be installed under PREFIX_FIRST/PREFIX_SECOND
	  The intention behind this is that you can change the installation
	  directory with PREFIX_FIRST while keeping the directory which
	  describes what kind of toolchain you have (PREFIX_SECOND)

config PREFIX_TCID
	string
	default "gcc-${PTXCONF_CROSS_GCC_VERSION}-glibc-${PTXCONF_GLIBC_VERSION}-kernel-${PTXCONF_KERNEL_HEADERS_VERSION}${PTXCONF_PREFIX_KERNEL}" if LIBC_GLIBC
	default "gcc-${PTXCONF_CROSS_GCC_VERSION}-uclibc-${PTXCONF_UCLIBC_VERSION}-kernel-${PTXCONF_KERNEL_HEADERS_VERSION}${PTXCONF_PREFIX_KERNEL}" if LIBC_UCLIBC
	default "gcc-${PTXCONF_CROSS_GCC_VERSION}-newlib-${PTXCONF_NEWLIB_VERSION}" if LIBC_NEWLIB
	default "gcc-${PTXCONF_CROSS_GCC_VERSION}-mingw-${PTXCONF_MINGW_RUNTIME_VERSION}-w32api-${PTXCONF_W32API_VERSION}" if LIBC_MINGW
	default "gcc-${PTXCONF_CROSS_GCC_VERSION}-libc-${PTXCONF_AVR8LIB_VERSION}" if LIBC_AVR_8

config PREFIX_SECOND
	string
	default "${PTXCONF_GNU_TARGET}/${PTXCONF_PREFIX_TCID}"
	help
	  Your toolchain will be installed under PREFIX_FIRST/PREFIX_SECOND
	  The intention behind this is that you can change the installation
	  directory with PREFIX_FIRST while keeping the directory which
	  describes what kind of toolchain you have (PREFIX_SECOND)

config PREFIX
	string
	default "${PTXCONF_PREFIX_FIRST}/${PTXCONF_PREFIX_SECOND}"

config HOST_PREFIX
	string
	default "${PTXCONF_PREFIX}"

endmenu