1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/win32
luislavena 86df08dac6 Improve require/File.expand_path performance on Windows
* configure.in (mingw): add shlwapi to the list of dependency
  libs for Windows.
* win32/Makefile.sub (EXTSOLIBS): ditto.

* internal.h: declare internal functions rb_w32_init_file,
  rb_file_expand_path_internal and rb_file_expand_path_fast.

* file.c (Init_File): invoke Windows initialization rb_w32_init_file

* win32/file.c (rb_file_load_path_internal): new function.
  Windows-specific implementation that replaces file_expand_path.
  [Bug #6836][ruby-core:46996]

* win32/file.c (rb_w32_init_file): new function. Initialize codepage
  cache for faster conversion encodings lookup.

* file.c (file_expand_path): rename to rb_file_expand_path_internal.
  Conditionally exclude from Windows.

* file.c (rb_file_expand_path_fast): new function. delegates to
  rb_file_expand_path_internal without performing a hit to the
  filesystem.

* file.c (file_expand_path_1): use rb_file_expand_path_internal without
  path expansion (used by require).
* file.c (rb_find_file_ext_safe): ditto.
* file.c (rb_find_file_safe): ditto.

* load.c (rb_get_expanded_load_path): use rb_file_expand_path_fast.
* load.c (rb_feature_provided): ditto.

* file.c (rb_file_expand_path): use rb_file_expand_path_internal with
  path expansion.
* file.c (rb_file_absolute_path): ditto.

* test/ruby/test_file_exhaustive.rb: new tests to exercise
  rb_file_expand_path_internal implementation and compliance with
  existing behaviors.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2012-08-24 03:44:56 +00:00
..
.time Improve require/File.expand_path performance on Windows 2012-08-24 03:44:56 +00:00
configure.bat * win32/configure.bat: added help message of --with(out)?-ext. 2012-08-23 03:33:53 +00:00
dir.h * win32/{win32.c,dir.h} (rb_w32_uopendir): new API to pass UTF-8 path. 2011-04-28 07:22:18 +00:00
enc-setup.mak
file.c Improve require/File.expand_path performance on Windows 2012-08-24 03:44:56 +00:00
ifchange.bat * common.mk (REVISION_H): keeps timestamp of revision.h. 2009-03-16 03:30:01 +00:00
makedirs.bat * win32/makedirs.bat: new command to make intermediate 2012-03-01 06:40:09 +00:00
Makefile.sub Improve require/File.expand_path performance on Windows 2012-08-24 03:44:56 +00:00
mkexports.rb * win32/mkexports.rb: should not export DllMain(). 2012-07-27 03:14:49 +00:00
README.win32 * win32/configure.bat, win32/setup.mak, win32/Makefile.sub: omit Win9x 2012-07-09 08:25:06 +00:00
resource.rb * common.mk (COMPILE_PRELUDE): rbconfig is loaded on demand. 2010-02-08 07:23:13 +00:00
rm.bat * win32/rm.bat: remove duplicated line. 2010-12-29 11:33:54 +00:00
rmall.bat * win32/makedirs.bat: new command to make intermediate 2012-03-01 06:40:09 +00:00
rmdirs.bat * common.mk (distclean-enc, realclean-enc): do not call clean of 2009-01-27 02:03:54 +00:00
setup.mak * win32/configure.bat, win32/setup.mak, win32/Makefile.sub: omit Win9x 2012-07-09 08:25:06 +00:00
stub.c * cygwin/GNUmakefile.in (scriptbin): make executable file from 2010-11-09 22:20:12 +00:00
win32.c * win32/win32.c (check_valid_dir): reject "..." as directory name. 2012-08-14 07:05:12 +00:00
winmain.c

=begin

= How to build ruby using Visual C++

== Requirement

(1) Windows XP or later.

(2) Visual C++ 6.0 or later. (strongly recommended VC++ 10)

    Note: if you want to build x64 or ia64 version, use native compiler for
          x64/ia64.

(3) Please set environment variable (({INCLUDE})), (({LIB})), (({PATH}))
    to run required commands properly from the command line.

    Note: building ruby requires following commands.
     * nmake
     * cl
     * lib
     * dumpbin

(4) If you want to build from SVN source, following commands are required.
     * bison
     * sed
     * ruby 1.8

(5) Enable Command Extension of your command line.  It's the default behavior
    of cmd.exe.  If you want to enable it explicitly, run cmd.exe with /E:ON
    option.

== How to compile and install

(1) Execute win32\configure.bat on your build directory.
    You can specify the target platform as an argument.
    For example, run `((%configure --target=i686-mswin32%))'
    You can also specify the install directory.
    For example, run `((%configure --prefix=<install_directory>%))'
    Default of the install directory is /usr .
    The default ((|<PLATFORM>|)) is `(({i386-mswin32}))'.

(2) Change ((|RUBY_INSTALL_NAME|)) and ((|RUBY_SO_NAME|)) in (({Makefile}))
    if you want to change the name of the executable files. 
    And add ((|RUBYW_INSTALL_NAME|)) to change the name of the
    executable without console window if also you want.

(3) Run `((%nmake%))'

(4) Run `((%nmake test%))'

(5) Run `((%nmake install%))'

== Icons

Any icon files(*.ico) in the build directory, directories specified with
((|icondirs|)) make variable and (({win32})) directory under the ruby
source directory will be included in DLL or executable files, according
to their base names.
    $(RUBY_INSTALL_NAME).ico or ruby.ico   --> $(RUBY_INSTALL_NAME).exe
    $(RUBYW_INSTALL_NAME).ico or rubyw.ico --> $(RUBYW_INSTALL_NAME).exe
    the others                             --> $(RUBY_SO_NAME).dll

Although no icons are distributed with the ruby source or in the official 
site, you can use anything you like. For example, followings are written 
in Japanese, but you can download at least.

* ((<URL:http://homepage1.nifty.com/a_nakata/ruby/>)) or
  ((<icon itself|URL:http://homepage1.nifty.com/a_nakata/ruby/RubyIcon.ico>))

== Build examples

* Build on the ruby source directory.

  ex.)
    ruby source directory:  C:\ruby
    build directory:        C:\ruby
    install directory:      C:\usr\local

    C:
    cd \ruby
    win32\configure --prefix=/usr/local
    nmake
    nmake test
    nmake install

* Build on the relative directory from the ruby source directory.

  ex.)
    ruby source directory:  C:\ruby
    build directory:        C:\ruby\mswin32
    install directory:      C:\usr\local

    C:
    cd \ruby
    mkdir mswin32
    cd mswin32
    ..\win32\configure --prefix=/usr/local
    nmake
    nmake test
    nmake install

* Build on the different drive.

  ex.)
    ruby source directory:  C:\src\ruby
    build directory:        D:\build\ruby
    install directory:      C:\usr\local

    D:
    cd D:\build\ruby
    C:\src\ruby\win32\configure --prefix=/usr/local
    nmake
    nmake test
    nmake install DESTDIR=C:

* Build x64 version (requires native x64 VC++ compiler)

  ex.)
    ruby source directory:  C:\ruby
    build directory:        C:\ruby
    install directory:      C:\usr\local

    C:
    cd \ruby
    win32\configure --prefix=/usr/local --target=x64-mswin64
    nmake
    nmake test
    nmake install

== Bugs

You can ((*NOT*)) use a path name contains any white space characters as
the ruby source directory, this restriction comes from the behavior of
(({!INCLUDE})) directives of (({NMAKE})).
((- you may call it a bug. -))

=end