-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extmk.rb: fix mingw make failure with make -jN
* common.mk (WPROGRAM): need same dependencies as PROGRAM. * cygwin/GNUmakefile.in (uncommon.mk): move include position below WPROGRAM definition to be defined in uncommon.mk. * ext/extmk.rb (all, static): fix make rubyw.exe failure with make -jN. If make of ruby.exe and rubyw.exe run in parallel, link dll and link exe run in parallel, which causes link failure on mingw. To fix this, we make ruby.exe and rubyw.exe in one make process. [ruby-core:48007] [Bug ruby#7165] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37246 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
Showing
4 changed files
with
23 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
Wed Oct 17 21:16:47 2012 Hiroshi Shirosaki <[email protected]> | ||
|
||
* common.mk (WPROGRAM): need same dependencies as PROGRAM. | ||
|
||
* cygwin/GNUmakefile.in (uncommon.mk): move include position | ||
below WPROGRAM definition to be defined in uncommon.mk. | ||
|
||
* ext/extmk.rb (all, static): fix make rubyw.exe failure with make -jN. | ||
If make of ruby.exe and rubyw.exe run in parallel, link dll and link | ||
exe run in parallel, which causes link failure on mingw. To fix this, | ||
we make ruby.exe and rubyw.exe in one make process. | ||
[ruby-core:48007] [Bug #7165] | ||
|
||
Wed Oct 17 16:25:34 2012 Koichi Sasada <[email protected]> | ||
|
||
* benchmark/bm_vm2_method_missing.rb: add a benchmark to measure | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters