author | mickeyl <mickeyl> | 2005-02-12 15:47:06 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-02-12 15:47:06 (UTC) |
commit | 0bf0f893a82426615cfe9f0bf764e1344c733ee3 (patch) (unidiff) | |
tree | ba147bb8ea70b409f15a76196097de49056576b6 /config.in | |
parent | f13760433a6526555bc5a4378ee3517f4053ac61 (diff) | |
download | opie-0bf0f893a82426615cfe9f0bf764e1344c733ee3.zip opie-0bf0f893a82426615cfe9f0bf764e1344c733ee3.tar.gz opie-0bf0f893a82426615cfe9f0bf764e1344c733ee3.tar.bz2 |
remove arm-linux'isms from linux-oe-g++ and make it depending on the value of OE_TARGET_SYS
this enables to build Opie against OE staging area targetting e.g. uclibc, mips, or whatever
-rw-r--r-- | config.in | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -17,64 +17,69 @@ choice | |||
17 | 17 | ||
18 | config TARGET_SHARP | 18 | config TARGET_SHARP |
19 | boolean "Sharp Zaurus w/ SA1100 (5000 and 5500)" | 19 | boolean "Sharp Zaurus w/ SA1100 (5000 and 5500)" |
20 | 20 | ||
21 | config TARGET_C700 | 21 | config TARGET_C700 |
22 | boolean "Sharp Zaurus w/ PXA25x (5600, C7x0, C8x0)" | 22 | boolean "Sharp Zaurus w/ PXA25x (5600, C7x0, C8x0)" |
23 | 23 | ||
24 | config TARGET_OE | 24 | config TARGET_OE |
25 | boolean "OpenEmbedded w/ OE build dir set below" | 25 | boolean "OpenEmbedded w/ OE build dir set below" |
26 | 26 | ||
27 | config TARGET_IPAQ | 27 | config TARGET_IPAQ |
28 | boolean "iPAQ" | 28 | boolean "iPAQ" |
29 | 29 | ||
30 | config TARGET_RAMSES | 30 | config TARGET_RAMSES |
31 | boolean "Ramses" | 31 | boolean "Ramses" |
32 | 32 | ||
33 | config TARGET_SIMPAD | 33 | config TARGET_SIMPAD |
34 | boolean "SIMpad" | 34 | boolean "SIMpad" |
35 | 35 | ||
36 | config TARGET_YOPY | 36 | config TARGET_YOPY |
37 | boolean "Yopy 3500/3700" | 37 | boolean "Yopy 3500/3700" |
38 | endchoice | 38 | endchoice |
39 | 39 | ||
40 | config OE_BUILD_DIR | 40 | config OE_BUILD_DIR |
41 | depends TARGET_OE | 41 | depends TARGET_OE |
42 | string "OE build directory" | 42 | string "OE build directory" |
43 | default ">>>set OpenEmbedded build directory here<<<" | 43 | default ">>>set OpenEmbedded build directory here<<<" |
44 | 44 | ||
45 | config OE_HOST_SYS | 45 | config OE_HOST_SYS |
46 | depends TARGET_OE | 46 | depends TARGET_OE |
47 | string "OE host system" | 47 | string "OE host system" |
48 | default "i686-linux" | 48 | default "i686-linux" |
49 | |||
50 | config OE_TARGET_SYS | ||
51 | depends TARGET_OE | ||
52 | string "OE target system" | ||
53 | default "arm-linux" | ||
49 | 54 | ||
50 | config OPTIMIZE | 55 | config OPTIMIZE |
51 | boolean "Use optimizations" | 56 | boolean "Use optimizations" |
52 | default "y" if ! TARGET_X86 | 57 | default "y" if ! TARGET_X86 |
53 | 58 | ||
54 | config THREADED | 59 | config THREADED |
55 | boolean "Enable threaded build" | 60 | boolean "Enable threaded build" |
56 | default "n" | 61 | default "n" |
57 | 62 | ||
58 | config STATIC | 63 | config STATIC |
59 | boolean "Build static libraries" | 64 | boolean "Build static libraries" |
60 | default "n" | 65 | default "n" |
61 | 66 | ||
62 | config DEBUG | 67 | config DEBUG |
63 | boolean "Enable debug builds" | 68 | boolean "Enable debug builds" |
64 | default n | 69 | default n |
65 | 70 | ||
66 | config RELEASE | 71 | config RELEASE |
67 | bool | 72 | bool |
68 | default y | 73 | default y |
69 | depends !DEBUG | 74 | depends !DEBUG |
70 | 75 | ||
71 | config QUICK_LAUNCH | 76 | config QUICK_LAUNCH |
72 | boolean "Enable Quick Launch" | 77 | boolean "Enable Quick Launch" |
73 | default n if TARGET_X86 | 78 | default n if TARGET_X86 |
74 | default y if ! TARGET_X86 | 79 | default y if ! TARGET_X86 |
75 | 80 | ||
76 | config QUICKLAUNCH_PATH | 81 | config QUICKLAUNCH_PATH |
77 | string "Path to quicklauncher" | 82 | string "Path to quicklauncher" |
78 | default "./quicklauncher" if TARGET_X86 | 83 | default "./quicklauncher" if TARGET_X86 |
79 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 | 84 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 |
80 | 85 | ||