• Home
  • History
  • Annotate
  • only in /external/icu4c/tools/genren/
NameDateSize

..17-Jul-20124 KiB

genren.pl17-Jul-20128.2 KiB

Makefile17-Jul-20122.7 KiB

README17-Jul-20121.2 KiB

README

1Copyright (c) 2002, International Business Machines Corporation and others. All Rights Reserved.
2The genren.pl script is used to generate source/common/unicode/urename.h header file, which is needed for renaming the ICU exported names. 
3
4This script is intended to be used on Linux, although it should work on any platform that has Perl and nm command. Makefile may need to be updated, it's not 100% portable. 
5
6The following instructions are for Linux version.
7- urename.h file should be generated after implementation is complete for a release.
8- the version number for a release should be set according to the list in source/common/unicode/uversion.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 original source directory**
14- Eyeball the new file for errors - you can compare it to icu/source/common/unicode/urename.h.old
15- Another good way to check the file is a side by side diff.  After the above 'make 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 
23