Commit 46b91185 authored by Daniel Bovensiepen's avatar Daniel Bovensiepen

Fix Visual Studio Toolchain

parent 8e86ff22
......@@ -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}"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment