office-gobmx/icu
Tor Lillqvist e4050a653b Don't consider newer Apple compilers having "universal" byte order
I don't understand what the "universal" byte order thing tries to
say. Sure, Apple's compilers can produce fat binaries, i.e. containing
code for multiple architectures, which I guess might have differing
byte order. But I think the test for an -arch flag being present here
is backwards, surely if you specify -arch i386 for instance, then we
*know* that the byte order is little endian, not "universal".

Anyway, this broke ICU when built against MacOSX SDK 10.6 at least,
the ICU configury used wrong suffix for ICUDATA_NAME, and genbrk
failed in i18npool with a mysterious "can not initialize ICU.  status
= U_FILE_ACCESS_ERROR" message.
2011-09-28 11:41:17 +03:00
..
prj Let's try to do without the extra copy of icuin.lib as iicui18n.lib 2011-08-18 17:37:03 +03:00
createmak.cfg Don't use pointless and obsolete switches when building ICU 2011-01-22 03:42:25 +02:00
createmak.pl changefileheader2: #i109125#: change source file copyright notice from Sun Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision) 2010-02-12 15:01:35 +01:00
icu-mp.patch ause124: #i107097#: add dependencies for directory creation 2010-07-21 13:12:39 +02:00
icu4c-4_4_2-wchar_t.patch Make icu 4.4.2 build on Linux 2011-03-15 11:21:43 +01:00
icu4c-aix.patch fix aix patch 2011-03-11 10:01:47 +00:00
icu4c-build.patch Don't consider newer Apple compilers having "universal" byte order 2011-09-28 11:41:17 +03:00
icu4c-escapespace.patch escape spaces in compiler name 2011-03-15 21:44:17 +00:00
icu4c-rpath.patch icu-4.2.1-rpath.diff: pass $ORIGIN correctly to icu RPATH 2011-03-29 17:59:06 +02:00
icu4c-strict-c.patch Fix some icu cross-building problems. 2011-08-19 18:43:29 +02:00
icu4c-warnings.patch WaE: silence new icu warnings 2011-03-11 14:43:36 +00:00
icu4c.8320.freeserif.crash.patch restore build of build patch that seem to still make sense 2011-03-11 09:03:27 +00:00
icuversion.mk Downgrade icu to 4.4.2 2011-03-15 10:35:24 +01:00
makefile.mk Compile also ICU for debugging if --enable-debug 2011-09-27 23:31:37 +03:00
Readme

This file describes the procedure of creating and maintaining makefiles.zip
# Obo's part

    The automatically generated makefiles are not necessarily optimal. The build is started from allinone/all directory, and the all.mak file is used to build the entire module through. Each subtarget in this file is going to be made recursively unless there is a switch RECURSE=0. If the switch is available, for each subtarget all its prerequisites should be made earlier than the subtarget itself. Therefore, you should order the ALL target's prerequisites so that they are going to be built in a consistent order. Unfortunately there's no automatic process for it, just prove the prerequisites for each subtarget and push them forward in target's ALL prerequisites list. The changes between generated & optimized all.mak can be seen when comparing the files from v1.5 & v1.6 of makefiles.zip.