Coder Social home page Coder Social logo

perl-with-unicode-for-windows's Introduction

Perl with Unicode for Windows

This repository contains instructions for recompiling the perl.exe executable for Windows (of the chosen Perl distribution), in order to make it compatible with command line Unicode characters in Windows:
Please note that actual distributions have not cared for Unicode treatment of Unicode in Windows, where it uses a UTF-16 codification, whereas the Perl cmdline executable as ported from linux (where these Unicode issues don't happen!) can't manage UTF-16 (or any other codification) at all in Windows.

The original patch comes from A. Sinan Unur's brightening post Fixing Perl's Unicode problems on the command line on Windows: A trilogy in N parts and it is licensed under Artistic License 2.0.

Requirements

  • Note that I'll be using libre mingw-w64 gcc compiler: in Windows it is installed using Win-builds.

  • A Perl installation: actually I've only checked this patch with ActiveState Perl, though it should be portable as is to any other distribution (Strawberry, compiled from sources, or whatever). I'll try to compile this in other distributions asap. Version 5.24.2.2403 (from source) and 5.24.0 MSWin32-x64-multi-thread (from installation) has been tested. Sources aren't needed as they're installed with the distribution you choose.

  • A. Sinan Unur's patch to runperl.c. It makes a wrapper around Perl's main() with an additional function called wmain() which copes with translation from Windows' Unicode to Unicode UTF-8 codification used by Perl. You can use the runperl.c code of this repository, or apply the the runperl.patch patch to your original runperl.c from source: $ patch runperl.c runperl.patch

Compilation

Supposing (change paths as convenient):

  • mingw-w64 installed at C:\mingw-w64\
  • Perl installed at C:\Perl64\
  • (If Perl is not installed there, but just compiled from source there, without installing, change -LC:\Perl64\bin with -LC:\Perl64)
  • runperl.c patched on current path

First, go to C:\Perl64\bin (C:\Perl64 if Perl's been just compiled there), and copy perl524.dll as libperl524.dll:

C:\Perl> cd bin
C:\Perl\bin> copy perl524.dll libperl524.dll

Now, just cd to the location of your patched runperl.c file and execute:

C:\mingw-w64\bin\gcc.exe -I C:\Perl64\lib\CORE -I C:\mingw-w64\x86_64-w64-mingw32\include -LC:\Perl64\lib\CORE -LC:\Perl64\bin -llibperl524 -municode runperl.c -o perl_unicode.exe

This will generate perl_unicode.exe.

Test perl_unicode.exe

  • Copy the previously noted libperl524.dll to the same path as perl_unicode.exe

  • If Perl is not installed but just compiled, you will need to set this environment variable:
    set PERL5LIB=C:\Perl64\lib

  • Check output from this input command (it contains various Unicode chars as a parameter to perl_unicode.exe at the end): perl_unicode.exe -Mopen=:std,:utf8 -E "say for @ARGV" kârlıの
    Output should be: kârlıの

Note that codepage may need to be changed to Unicode in some command-line examples: in this case type chcp 65001 on your MSDOS prompt. This occurs if no indication is made to Perl as to what kind of input we are using.
But if you properly code your Perl script with appropriate input/ouput management, and replace perl.exe with this executable in your installation, you can directly use Unicode chars as parameters: I've used two scripts of mine (that were longing for this patch!) to check this: rnm (recursive renaming for Windows and linux) and cpr (recursive copying for Windows and linux).

Binary releases

Please note that these binaries are distributed as is without any guarantee explicit nor implied.

Longer explanation of the process

Please, check my blog entry, specially notes under "Adapting the patch".

Pending business !

I'll upload more binaries asap.

author

license

Please note that original patch by A. Sinan Unur is licensed under Artistic License 2.0.
Artistic License has been largely in use in the Perl community.

The original patch by A. Sinan Unur and the one used in these instructions differ in the following header lines:

#define WINVER 0x0600
#define _WIN32_WINNT 0x0600
#include "winnls.h"

perl-with-unicode-for-windows's People

Contributors

circulosmeos avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.