OLD | NEW |
(Empty) | |
| 1 Copyright (c) 2002-2010, International Business Machines Corporation and others.
All Rights Reserved. |
| 2 The genren.pl script is used to generate source/common/unicode/urename.h header
file, which is needed for renaming the ICU exported names. |
| 3 |
| 4 This script is intended to be used on Linux, although it should work on any plat
form that has Perl and nm command. Makefile may need to be updated, it's not 100
% portable. |
| 5 |
| 6 The following instructions are for Linux version. |
| 7 - urename.h file should be generated after implementation is complete for a rele
ase. |
| 8 - the version number for a release should be set according to the list in source
/common/unicode/uvernum.h |
| 9 - In this [genren] directory, run |
| 10 |
| 11 "make install-header" |
| 12 |
| 13 - urename.h will be updated in icu/source/common/unicode/urename.h **in your or
iginal source directory** |
| 14 - Eyeball the new file for errors - you can compare it to icu/source/common/unic
ode/urename.h.old |
| 15 - Another good way to check the file is a side by side diff. After the above 'm
ake install-header': |
| 16 |
| 17 diff --side-by-side urename.sort urename.old.sort | more |
| 18 |
| 19 - Other make targets here |
| 20 |
| 21 clean - cleans out intermediate files |
| 22 urename.h -just builds ./urename.h |
OLD | NEW |