mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 3fa3f9abb9
			
		
	
	
		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
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| #include "transcode_data.h"
 | |
| 
 | |
| <%
 | |
|   transcode_tblgen "Shift_JIS", "UTF-8",
 | |
|   [["{00-7f}", :nomap]] +
 | |
|   citrus_decode_mapsrc("mskanji", 1, "JISX0201-KANA/UCS") +
 | |
|   citrus_decode_mapsrc("mskanji", 2, "JISX0208:1990/UCS")
 | |
| 
 | |
|   transcode_tblgen "Windows-31J", "UTF-8",
 | |
|   [["{00-7f}", :nomap]] +
 | |
|   citrus_decode_mapsrc("mskanji", 1, "JISX0201-KANA/UCS") +
 | |
|   citrus_decode_mapsrc("mskanji", 2,
 | |
|     "JISX0208VDC:NEC/UCS,CP932VDC:NEC_IBM/UCS,CP932VDC:IBM/UCS,CP932UDA/UCS,JISX0208:MS/UCS")
 | |
| 
 | |
| 
 | |
|   transcode_tblgen "UTF-8", "Shift_JIS",
 | |
|   [["{00-7f}", :nomap]] +
 | |
|   citrus_decode_mapsrc("mskanji", 1, "UCS/JISX0201-KANA") +
 | |
|   citrus_decode_mapsrc("mskanji", 2, "UCS/JISX0208:1990")
 | |
| 
 | |
|   transcode_tblgen "UTF-8", "Windows-31J",
 | |
|   [["{00-7f}", :nomap]] +
 | |
|   citrus_decode_mapsrc("mskanji", 1, "UCS/JISX0201-KANA") +
 | |
|   citrus_decode_mapsrc("mskanji", 2,
 | |
|     "UCS/JISX0208:MS,UCS/JISX0208VDC:NEC,UCS/CP932VDC:IBM,UCS/CP932VDC:NEC_IBM,UCS/CP932UDA")
 | |
| %>
 | |
| 
 | |
| <%= transcode_generated_code %>
 | |
| 
 | |
| TRANS_INIT(japanese_sjis)
 | |
| {
 | |
| <%= transcode_register_code %>
 | |
| }
 |