Changeset 5724
- Timestamp:
- 11/06/09 09:10:56 (2 weeks ago)
- Files:
-
- 1 modified
-
mpich2/trunk/winconfigure.wsf (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mpich2/trunk/winconfigure.wsf
r5686 r5724 2975 2975 fout.WriteLine("#endif") 2976 2976 Case "MPIU_THREAD_PACKAGE_NAME" 2977 fout.WriteLine("#ifdef MPICH_MULTITHREADED")2978 2977 fout.WriteLine("#define MPIU_THREAD_PACKAGE_NAME MPIU_THREAD_PACKAGE_WIN") 2979 fout.WriteLine("#else")2980 fout.WriteLine("#define MPIU_THREAD_PACKAGE_NAME MPIU_THREAD_PACKAGE_NONE")2981 fout.WriteLine("#endif")2982 2978 Case "MPIU_THREAD_REFCOUNT" 2983 2979 fout.WriteLine("#define MPIU_THREAD_REFCOUNT MPIU_REFCOUNT_NONE") … … 3617 3613 fout.WriteLine("#define SIZEOF_OPA_PTR_T 4") 3618 3614 End if 3615 Case "USE_ASYNC_PROGRESS" 3616 fout.WriteLine("/* #undef USE_ASYNC_PROGRESS */") 3619 3617 Case Else 3620 3618 'MsgBox("Unhandled definition <" & define & ">") … … 6500 6498 CreateRules f.GetFolder("src\util\logging\common"), trimlength 6501 6499 CreateRules f.GetFolder("src\util\param"), trimlength 6500 CreateRules f.GetFolder("src\util\thread"), trimlength 6502 6501 ' Insert rules for romio manually since romio is not build with Makefile.sm files 6503 6502 mfile.WriteLine("{..\src\mpi\romio\adio\ad_ntfs}.c{$(OUTDIR)}.obj:") … … 6536 6535 CreateObjs "mpich2", f.GetFolder("src\util\logging\common"), trimlength, false, false 6537 6536 CreateObjs "mpich2", f.GetFolder("src\util\param"), trimlength, false, false 6537 CreateObjs "mpich2", f.GetFolder("src\util\thread"), trimlength, false, false 6538 6538 mfile.WriteLine(" \" & vbCrLf & " $(OUTDIR)\ad_ntfs.obj \") 6539 6539 mfile.WriteLine(" $(OUTDIR)\ad_ntfs_close.obj \") … … 6688 6688 CreateRules f.GetFolder("src\mpid\ch3\util\sock"), trimlength 6689 6689 'CreateRules f.GetFolder("src\util\events"), trimlength 6690 mfile.WriteLine("{..\src\util\thread}.c{$(MT_OUTDIR)}.obj:")6691 mfile.WriteLine(" $(cc) $(cflags) /Fo""$(MT_OUTDIR)\\"" /Fd""$(MT_OUTDIR)\\"" $**")6692 mfile.WriteLine6693 6690 CreateObjs "ch3mt", f.GetFolder("src\mpid\ch3\channels\sock"), trimlength, true, false 6694 CreateObjs "ch3mt", f.GetFolder("src\mpid\ch3\util\sock"), trimlength, false, false6691 CreateObjs "ch3mt", f.GetFolder("src\mpid\ch3\util\sock"), trimlength, false, true 6695 6692 'CreateObjs "ch3mt", f.GetFolder("src\util\events"), trimlength, false, false 6696 mfile.WriteLine(" \" & vbCrLf & " $(MT_OUTDIR)\mpiu_thread.obj")6697 6693 6698 6694 mfile.WriteLine … … 6704 6700 ' CreateRules f.GetFolder("src\mpid\ch3\channels\nemesis\nemesis\utils"), trimlength 6705 6701 CreateRules f.GetFolder("src\mpid\ch3\channels\nemesis\nemesis\netmod\wintcp"), trimlength 6706 mfile.WriteLine("{..\src\util\thread}.c{$(NEMESIS_OUTDIR)}.obj:")6707 mfile.WriteLine(" $(cc) $(cflags) /Fo""$(NEMESIS_OUTDIR)\\"" /Fd""$(NEMESIS_OUTDIR)\\"" $**")6708 mfile.WriteLine6709 6702 CreateObjs "ch3nemesis", f.GetFolder("src\mpid\ch3\channels\nemesis\src"), trimlength, true, false 6710 6703 CreateObjs "ch3nemesis", f.GetFolder("src\mpid\ch3\channels\nemesis\nemesis\src"), trimlength, false, false 6711 6704 ' CreateObjs "ch3nemesis", f.GetFolder("src\mpid\ch3\channels\nemesis\nemesis\utils"), trimlength, false, false 6712 CreateObjs "ch3nemesis", f.GetFolder("src\mpid\ch3\channels\nemesis\nemesis\netmod\wintcp"), trimlength, false, false 6713 mfile.WriteLine(" \" & vbCrLf & " $(NEMESIS_OUTDIR)\mpiu_thread.obj") 6705 CreateObjs "ch3nemesis", f.GetFolder("src\mpid\ch3\channels\nemesis\nemesis\netmod\wintcp"), trimlength, false, true 6714 6706 6715 6707 mfile.WriteLine
