diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-21 00:25:58 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-21 00:25:58 -0800 |
| commit | 04941bc1634335c8f7fca3bafc68ca2c25969faf (patch) | |
| tree | 4f4515f5cebddf0f17d967d94072f7cfc627a9a8 /tasks/toolchains/vs2012.rake | |
| parent | 8e86ff2283d427b5cb2a02607e1aab998cb5090c (diff) | |
| parent | 300f0d548b956aa6d36e1768a96fd8ec6d400297 (diff) | |
| download | mruby-04941bc1634335c8f7fca3bafc68ca2c25969faf.tar.gz mruby-04941bc1634335c8f7fca3bafc68ca2c25969faf.zip | |
Merge pull request #761 from bovi/beautify-build
Beautify build process output
Diffstat (limited to 'tasks/toolchains/vs2012.rake')
| -rw-r--r-- | tasks/toolchains/vs2012.rake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks/toolchains/vs2012.rake b/tasks/toolchains/vs2012.rake index 8b4212468..1f6ea2d65 100644 --- a/tasks/toolchains/vs2012.rake +++ b/tasks/toolchains/vs2012.rake @@ -12,8 +12,8 @@ MRuby::Toolchain.new(:vs2012) do |conf| conf.linker do |linker| linker.command = ENV['LD'] || 'link.exe' linker.flags = [ENV['LDFLAGS'] || %w(/nologo)] - linkerraries = %w(kernel32 user32 gdi32 winspool comdlg32 advapi32 shell32 ole32 oleaut32 uuid odbc32 odbccp32) - linkerrary_paths = [] + linker.libraries = %w(kernel32 user32 gdi32 winspool comdlg32 advapi32 shell32 ole32 oleaut32 uuid odbc32 odbccp32) + linker.library_paths = [] linker.option_library = '-l%s' linker.option_library_path = '-L%s' linker.link_options = "%{flags} /OUT:%{outfile} %{objs} %{libs}" |
