* [Buildroot] svn commit: trunk/buildroot/package/icu
@ 2008-03-10 15:15 ninevoltz at uclibc.org
0 siblings, 0 replies; 11+ messages in thread
From: ninevoltz at uclibc.org @ 2008-03-10 15:15 UTC (permalink / raw)
To: buildroot
Author: ninevoltz
Date: 2008-03-10 08:15:57 -0700 (Mon, 10 Mar 2008)
New Revision: 21281
Log:
changed to use sourceforge variable
Modified:
trunk/buildroot/package/icu/icu.mk
Changeset:
Modified: trunk/buildroot/package/icu/icu.mk
===================================================================
--- trunk/buildroot/package/icu/icu.mk 2008-03-10 14:52:39 UTC (rev 21280)
+++ trunk/buildroot/package/icu/icu.mk 2008-03-10 15:15:57 UTC (rev 21281)
@@ -6,7 +6,7 @@
ICU_VERSION:=4c-3_8_1
ICU_SOURCE:=icu$(ICU_VERSION)-src.tgz
-ICU_SITE:=http://superb-west.dl.sourceforge.net/sourceforge/icu
+ICU_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/icu
ICU_CAT:=$(ZCAT)
ICU_DIR:=$(BUILD_DIR)/icu/source
ICU_HOST_DIR:=$(BUILD_DIR)/icu-host/source
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/icu
@ 2009-01-27 15:02 jacmet at uclibc.org
2009-01-27 15:24 ` sddnd
2009-01-27 15:29 ` Daniel Laird
0 siblings, 2 replies; 11+ messages in thread
From: jacmet at uclibc.org @ 2009-01-27 15:02 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2009-01-27 15:02:29 +0000 (Tue, 27 Jan 2009)
New Revision: 25078
Log:
icu: needs wchar support in toolchain as well
Modified:
trunk/buildroot/package/icu/Config.in
Changeset:
Modified: trunk/buildroot/package/icu/Config.in
===================================================================
--- trunk/buildroot/package/icu/Config.in 2009-01-27 15:02:25 UTC (rev 25077)
+++ trunk/buildroot/package/icu/Config.in 2009-01-27 15:02:29 UTC (rev 25078)
@@ -1,10 +1,11 @@
config BR2_PACKAGE_ICU
bool "icu"
depends on BR2_INSTALL_LIBSTDCPP
+ depends on BR2_USE_WCHAR
help
International Components for Unicode.
http://icu-project.org/
-comment "icu requires a toolchain with C++ support enabled"
- depends on !BR2_INSTALL_LIBSTDCPP
+comment "icu requires a toolchain with C++ support and WCHAR enabled"
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/icu
2009-01-27 15:02 jacmet at uclibc.org
@ 2009-01-27 15:24 ` sddnd
2009-01-27 15:29 ` Daniel Laird
1 sibling, 0 replies; 11+ messages in thread
From: sddnd @ 2009-01-27 15:24 UTC (permalink / raw)
To: buildroot
Hello:
Recently I developed a project which use FR-V in its core.
It's Big-Endian.
I tried to build libicu manually followed by the doc or the buildroot way,
but I can't find how to build the big-endian binary.
Now I choose to use a Big-Endian machine (such as PPC) to build the
necessary DATA files. It works. But that way I use is ugly.
No much big deal for this,
but if you could find a better way to handle(or solve) this,
I will be much appreciate !
Best Regard.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.busybox.net/pipermail/buildroot/attachments/20090127/6e67c15c/attachment.htm
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/icu
2009-01-27 15:02 jacmet at uclibc.org
2009-01-27 15:24 ` sddnd
@ 2009-01-27 15:29 ` Daniel Laird
2009-01-27 15:54 ` Peter Korsgaard
1 sibling, 1 reply; 11+ messages in thread
From: Daniel Laird @ 2009-01-27 15:29 UTC (permalink / raw)
To: buildroot
My only concern with all these changes is currently external toolchain has
no support for setting
BR2_ENABLE_LOCALE or BR2_USE_WCHAR. However I can build these packages.
SO,
do we make these options top level external-toolchain options? (best option)
automagically set these if using an external toolchain? (hack option)
It would seem a shame to break external toolchain support at this late
hour....
Am willing to try out suggested fixes!
Cheers
Dan
-----Original Message-----
From: buildroot-bounces@busybox.net [mailto:buildroot-bounces at busybox.net]
On Behalf Of jacmet at uclibc.org
Sent: 2009 Jan 27 15:03
To: buildroot at uclibc.org
Subject: [Buildroot] svn commit: trunk/buildroot/package/icu
Author: jacmet
Date: 2009-01-27 15:02:29 +0000 (Tue, 27 Jan 2009)
New Revision: 25078
Log:
icu: needs wchar support in toolchain as well
Modified:
trunk/buildroot/package/icu/Config.in
Changeset:
Modified: trunk/buildroot/package/icu/Config.in
===================================================================
--- trunk/buildroot/package/icu/Config.in 2009-01-27 15:02:25 UTC (rev
25077)
+++ trunk/buildroot/package/icu/Config.in 2009-01-27 15:02:29 UTC (rev
25078)
@@ -1,10 +1,11 @@
config BR2_PACKAGE_ICU
bool "icu"
depends on BR2_INSTALL_LIBSTDCPP
+ depends on BR2_USE_WCHAR
help
International Components for Unicode.
http://icu-project.org/
-comment "icu requires a toolchain with C++ support enabled"
- depends on !BR2_INSTALL_LIBSTDCPP
+comment "icu requires a toolchain with C++ support and WCHAR enabled"
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
_______________________________________________
buildroot mailing list
buildroot at busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/icu
2009-01-27 15:29 ` Daniel Laird
@ 2009-01-27 15:54 ` Peter Korsgaard
2009-01-27 16:30 ` Daniel James Laird
0 siblings, 1 reply; 11+ messages in thread
From: Peter Korsgaard @ 2009-01-27 15:54 UTC (permalink / raw)
To: buildroot
>>>>> "Daniel" == Daniel Laird <danieljlaird@hotmail.com> writes:
Daniel> My only concern with all these changes is currently external toolchain has
Daniel> no support for setting
Daniel> BR2_ENABLE_LOCALE or BR2_USE_WCHAR. However I can build
Daniel> these packages.
I'm not familiar with the external toolchain stuff, but don't you
already now need to configure buildroot to match the toolchain
settings (ipv6, largefile, locales, c++ support and so on?). If not,
how is that handled?
Daniel> It would seem a shame to break external toolchain support at
Daniel> this late hour....
I guess it's already broken then ;) There's several packages depending
on locales/c++/wchar stuff.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/icu
2009-01-27 15:54 ` Peter Korsgaard
@ 2009-01-27 16:30 ` Daniel James Laird
2009-01-27 16:47 ` Peter Korsgaard
0 siblings, 1 reply; 11+ messages in thread
From: Daniel James Laird @ 2009-01-27 16:30 UTC (permalink / raw)
To: buildroot
> I'm not familiar with the external toolchain stuff, but don't you
> already now need to configure buildroot to match the toolchain
> settings (ipv6, largefile, locales, c++ support and so on?). If not,
> how is that handled?
It is currently setting stuff under toolchain/external-toolchain/Config.in.2
> Daniel> It would seem a shame to break external toolchain support at
> Daniel> this late hour....
> I guess it's already broken then ;) There's several packages depending
> on locales/c++/wchar stuff.
Yep, seems like what I shall do is add the options
BR2_LOCALE, BR2_USE_WCHAR and BR2_INSTALL_LIBSTDCPP.
Quick question, currently toolchain/external-toolchain/Config.in.2 is setting BR2_GCC_CROSS_CXX which means build a working C++ compiler (in buildroot toolchain case) or I have a working C++ compiler (in external toolchain usecase). So should this be changed to BR2_INSTALL_LIBSTDCPP as we seem to be using this second option to dictate whether some packages can be built (qt/icu etc) or should we instead be checking against BR2_GCC_CROSS_CXX in the packages that require C++ compiler support
Cheers
Dan
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/icu
2009-01-27 16:30 ` Daniel James Laird
@ 2009-01-27 16:47 ` Peter Korsgaard
0 siblings, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2009-01-27 16:47 UTC (permalink / raw)
To: buildroot
>>>>> "Daniel" == Daniel James Laird <daniel.j.laird@nxp.com> writes:
Hi,
>> I'm not familiar with the external toolchain stuff, but don't you
>> already now need to configure buildroot to match the toolchain
>> settings (ipv6, largefile, locales, c++ support and so on?). If not,
>> how is that handled?
Daniel> It is currently setting stuff under
Daniel> toolchain/external-toolchain/Config.in.2
Ahh ok.
>> I guess it's already broken then ;) There's several packages
>> depending on locales/c++/wchar stuff.
Daniel> Yep, seems like what I shall do is add the options
Daniel> BR2_LOCALE, BR2_USE_WCHAR and BR2_INSTALL_LIBSTDCPP.
Seems so.
Daniel> Quick question, currently
Daniel> toolchain/external-toolchain/Config.in.2 is setting
Daniel> BR2_GCC_CROSS_CXX which means build a working C++ compiler
Daniel> (in buildroot toolchain case) or I have a working C++
Daniel> compiler (in external toolchain usecase). So should this be
Daniel> changed to BR2_INSTALL_LIBSTDCPP as we seem to be using this
Daniel> second option to dictate whether some packages can be built
Daniel> (qt/icu etc) or should we instead be checking against
Daniel> BR2_GCC_CROSS_CXX in the packages that require C++ compiler
Daniel> support
Well, these things date back to before my time - I'm not quite sure
why we have 2 config settings for C++, and if C++ support without
libstdc++ makes any sense, but the best approach indeed seems to be to
add a LIBSTDCPP option as well (You can make it a hidden option that
get's selected by the CROSS_CXX if you want to).
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/icu
@ 2009-01-27 15:02 jacmet at uclibc.org
0 siblings, 0 replies; 11+ messages in thread
From: jacmet at uclibc.org @ 2009-01-27 15:02 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2009-01-27 15:02:25 +0000 (Tue, 27 Jan 2009)
New Revision: 25077
Log:
icu: add project url to help text
Modified:
trunk/buildroot/package/icu/Config.in
Changeset:
Modified: trunk/buildroot/package/icu/Config.in
===================================================================
--- trunk/buildroot/package/icu/Config.in 2009-01-27 15:02:22 UTC (rev 25076)
+++ trunk/buildroot/package/icu/Config.in 2009-01-27 15:02:25 UTC (rev 25077)
@@ -4,5 +4,7 @@
help
International Components for Unicode.
+ http://icu-project.org/
+
comment "icu requires a toolchain with C++ support enabled"
depends on !BR2_INSTALL_LIBSTDCPP
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/icu
@ 2009-01-27 15:02 jacmet at uclibc.org
0 siblings, 0 replies; 11+ messages in thread
From: jacmet at uclibc.org @ 2009-01-27 15:02 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2009-01-27 15:02:22 +0000 (Tue, 27 Jan 2009)
New Revision: 25076
Log:
icu: needs C++ support in toolchain
Modified:
trunk/buildroot/package/icu/Config.in
Changeset:
Modified: trunk/buildroot/package/icu/Config.in
===================================================================
--- trunk/buildroot/package/icu/Config.in 2009-01-27 15:02:13 UTC (rev 25075)
+++ trunk/buildroot/package/icu/Config.in 2009-01-27 15:02:22 UTC (rev 25076)
@@ -1,4 +1,8 @@
config BR2_PACKAGE_ICU
bool "icu"
+ depends on BR2_INSTALL_LIBSTDCPP
help
International Components for Unicode.
+
+comment "icu requires a toolchain with C++ support enabled"
+ depends on !BR2_INSTALL_LIBSTDCPP
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/icu
@ 2008-03-10 14:52 ninevoltz at uclibc.org
2008-03-10 16:13 ` Ivan Kuten
0 siblings, 1 reply; 11+ messages in thread
From: ninevoltz at uclibc.org @ 2008-03-10 14:52 UTC (permalink / raw)
To: buildroot
Author: ninevoltz
Date: 2008-03-10 07:52:39 -0700 (Mon, 10 Mar 2008)
New Revision: 21280
Log:
changed icu download location
Modified:
trunk/buildroot/package/icu/icu.mk
Changeset:
Modified: trunk/buildroot/package/icu/icu.mk
===================================================================
--- trunk/buildroot/package/icu/icu.mk 2008-03-09 07:30:43 UTC (rev 21279)
+++ trunk/buildroot/package/icu/icu.mk 2008-03-10 14:52:39 UTC (rev 21280)
@@ -5,9 +5,8 @@
#############################################################
ICU_VERSION:=4c-3_8_1
-ICU_VERSION_NUM:=3.8.1
ICU_SOURCE:=icu$(ICU_VERSION)-src.tgz
-ICU_SITE:=http://download.icu-project.org/files/icu4c/$(ICU_VERSION_NUM)
+ICU_SITE:=http://superb-west.dl.sourceforge.net/sourceforge/icu
ICU_CAT:=$(ZCAT)
ICU_DIR:=$(BUILD_DIR)/icu/source
ICU_HOST_DIR:=$(BUILD_DIR)/icu-host/source
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2009-01-27 16:47 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-10 15:15 [Buildroot] svn commit: trunk/buildroot/package/icu ninevoltz at uclibc.org
-- strict thread matches above, loose matches on Subject: below --
2009-01-27 15:02 jacmet at uclibc.org
2009-01-27 15:24 ` sddnd
2009-01-27 15:29 ` Daniel Laird
2009-01-27 15:54 ` Peter Korsgaard
2009-01-27 16:30 ` Daniel James Laird
2009-01-27 16:47 ` Peter Korsgaard
2009-01-27 15:02 jacmet at uclibc.org
2009-01-27 15:02 jacmet at uclibc.org
2008-03-10 14:52 ninevoltz at uclibc.org
2008-03-10 16:13 ` Ivan Kuten
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox