mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
3fa3f9abb9
Fixes --with-static-linked-ext. Patch by Google Inc. [ruby-core:45073]. * Makefile.in (ENCOBJS, EXTOBJS): New variables to specify static linked libraries. Also reintroduces extinit.o, introduces encinit.o introduces encinit.o * common.mk: Builds static libraries rather than shared objects if specified. * configure.in (LD): new substitution. Avoids PIE if s * enc/depend: Supports static linked libraries (libencs, libenc, libtrans): New target. * enc/encinit.c.erb: new template to generate the initialization of statically linked encodings. * enc/make_encmake.rb (--module): new flag to specify whether static or dynamic. * transcode_data.h (TRANS_INIT): New macro to get rid of the name collision of encoding initializers and transcoder initializers. * ext/extmk.rb: Fixes the behavior on $extstatic is true. * lib/mkmf.rb (clean-static): new target to clean up static linked libraries. * ruby.c (process_options): New initializes statically linked encodings here. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35662 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
57 lines
2.3 KiB
Text
57 lines
2.3 KiB
Text
#include "transcode_data.h"
|
|
|
|
<%
|
|
transcode_tblgen "EUC-JP", "UTF-8",
|
|
[["{00-7f}", :nomap]] +
|
|
citrus_decode_mapsrc("euc", 0x8080, "JISX0208:1990/UCS") +
|
|
citrus_decode_mapsrc("euc", 0x0080, "JISX0201-KANA/UCS") +
|
|
citrus_decode_mapsrc("euc", 0x8000, "JISX0212/UCS")
|
|
|
|
transcode_tblgen "eucJP-ms", "UTF-8",
|
|
[["{00-7f}", :nomap]] +
|
|
citrus_decode_mapsrc("euc", 0x8080, "JISX0208VDC:NEC/UCS,JISX0208UDC/UCS,JISX0208:MS/UCS") +
|
|
citrus_decode_mapsrc("euc", 0x0080, "JISX0201-KANA/UCS") +
|
|
citrus_decode_mapsrc("euc", 0x8000, "JISX0212VDC:IBM/UCS,JISX0212UDC/UCS,JISX0212:MS/UCS")
|
|
|
|
transcode_tblgen "CP51932", "UTF-8",
|
|
[["{00-7f}", :nomap]] +
|
|
citrus_decode_mapsrc("euc", 0x8080, "JISX0208VDC:NEC/UCS,CP932VDC:NEC_IBM/UCS,JISX0208:MS/UCS") +
|
|
citrus_decode_mapsrc("euc", 0x0080, "JISX0201-KANA/UCS")
|
|
|
|
transcode_tblgen "EUC-JP-2004", "UTF-8",
|
|
[["{00-7f}", :nomap]] +
|
|
citrus_decode_mapsrc("euc", 0x8080, "JISX0208:1990/UCS,JISX0213-1/UCS@BMP,JISX0213-1/UCS@SIP") +
|
|
citrus_decode_mapsrc("euc", 0x0080, "JISX0201-KANA/UCS") +
|
|
citrus_decode_mapsrc("euc", 0x8000, "JISX0213-2/UCS@BMP,JISX0213-2/UCS@SIP")
|
|
|
|
|
|
transcode_tblgen "UTF-8", "EUC-JP",
|
|
[["{00-7f}", :nomap]] +
|
|
citrus_decode_mapsrc("euc", 0x8080, "UCS/JISX0208:1990") +
|
|
citrus_decode_mapsrc("euc", 0x0080, "UCS/JISX0201-KANA") +
|
|
citrus_decode_mapsrc("euc", 0x8000, "UCS/JISX0212")
|
|
|
|
transcode_tblgen "UTF-8", "eucJP-ms",
|
|
[["{00-7f}", :nomap]] +
|
|
citrus_decode_mapsrc("euc", 0x8080, "UCS/JISX0208:MS,UCS/JISX0208VDC:NEC,UCS/JISX0208UDC") +
|
|
citrus_decode_mapsrc("euc", 0x0080, "UCS/JISX0201-KANA") +
|
|
citrus_decode_mapsrc("euc", 0x8000, "UCS/JISX0212VDC:IBM,UCS/JISX0212UDC,UCS/JISX0212:MS")
|
|
|
|
transcode_tblgen "UTF-8", "CP51932",
|
|
[["{00-7f}", :nomap]] +
|
|
citrus_decode_mapsrc("euc", 0x8080, "UCS/JISX0208:MS,UCS/JISX0208VDC:NEC,UCS/CP932VDC:NEC_IBM") +
|
|
citrus_decode_mapsrc("euc", 0x0080, "UCS/JISX0201-KANA")
|
|
|
|
transcode_tblgen "UTF-8", "EUC-JP-2004",
|
|
[["{00-7f}", :nomap]] +
|
|
citrus_decode_mapsrc("euc", 0x8080, "UCS/JISX0208:1990,UCS@BMP/JISX0213-1,UCS@SIP/JISX0213-1") +
|
|
citrus_decode_mapsrc("euc", 0x0080, "UCS/JISX0201-KANA") +
|
|
citrus_decode_mapsrc("euc", 0x8000, "UCS@BMP/JISX0213-2,UCS@SIP/JISX0213-2")
|
|
%>
|
|
|
|
<%= transcode_generated_code %>
|
|
|
|
TRANS_INIT(japanese_euc)
|
|
{
|
|
<%= transcode_register_code %>
|
|
}
|