Changeset 1329 in Sophya for trunk/SophyaProg/PrgUtil
- Timestamp:
- Nov 14, 2000, 12:02:51 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/PrgUtil/runcxx.cc
r1306 r1329 122 122 string oname, soname; 123 123 if (rc == 0) { 124 125 124 CxxCompilerLinker cxx; 126 125 if (fgtmp) cxx.SetTmpDir(tmpdir); … … 131 130 rc = cxx.Compile(flnm, oname); 132 131 cout << " RC from cxx.Compile() = " << rc << " oname= " << oname << endl; 133 rc = cxx.BuildSO(oname, soname); 134 cout << " RC from cxx.BuildSO() = " << rc << " soname= " << soname << endl; 132 if (rc == 0) { 133 rc = cxx.BuildSO(oname, soname); 134 cout << " RC from cxx.BuildSO() = " << rc << " soname= " << soname << endl; 135 } 135 136 PrtTim(" End of Compile-Link "); 136 137 }
Note:
See TracChangeset
for help on using the changeset viewer.