diff -crN oommf12a3/config/cache/wintel.tcl oommf/config/cache/wintel.tcl *** oommf12a3/config/cache/wintel.tcl Wed Oct 30 20:31:44 2002 --- oommf/config/cache/wintel.tcl Fri Oct 22 20:25:49 2004 *************** *** 134,145 **** # The program to run on this platform to create a single library file out # of many object files. # Microsoft Visual C++'s library maker ! $config SetValue program_libmaker {lib} # The program to run on this platform to link together object files and # library files to create an executable binary. # Microsoft Visual C++'s linker ! $config SetValue program_linker {link /DEBUG} } elseif {[string match icl $ccbasename]} { # ... for Intel C++ --- 134,147 ---- # The program to run on this platform to create a single library file out # of many object files. # Microsoft Visual C++'s library maker ! $config SetValue program_libmaker {link /lib} ! # If your link doesn't accept the /lib option, try this instead: ! # $config SetValue program_libmaker {lib} # The program to run on this platform to link together object files and # library files to create an executable binary. # Microsoft Visual C++'s linker ! $config SetValue program_linker {link} } elseif {[string match icl $ccbasename]} { # ... for Intel C++ *************** *** 245,253 **** unset ccbasename # Library making option processing... ! set libbasename [file tail [lindex [$config GetValue program_libmaker] 0]] ! if {[string match lib $libbasename]} { ! # ...for Microsoft VC++ lib $config SetValue program_libmaker_option_obj {format \"%s\"} $config SetValue program_libmaker_option_out {format "\"/OUT:%s\""} } elseif {[string match xilib $libbasename]} { --- 247,259 ---- unset ccbasename # Library making option processing... ! if {[catch {$config GetValue program_libmaker} libbasename]} { ! set libbasename {} ;# No librarian specified ! } else { ! set libbasename [file tail [lindex $libbasename 0]] ! } ! if {[string match lib $libbasename] || [string match link $libbasename]} { ! # ...for Microsoft VC++ lib or "link /lib" $config SetValue program_libmaker_option_obj {format \"%s\"} $config SetValue program_libmaker_option_out {format "\"/OUT:%s\""} } elseif {[string match xilib $libbasename]} {