[cig-commits] r18351 - cs/buildbot/trunk/buildbot/scripts

brad at geodynamics.org brad at geodynamics.org
Thu May 12 11:17:28 PDT 2011


Author: brad
Date: 2011-05-12 11:17:28 -0700 (Thu, 12 May 2011)
New Revision: 18351

Modified:
   cs/buildbot/trunk/buildbot/scripts/windows.py
Log:
Updates for changes to PETSc build.

Modified: cs/buildbot/trunk/buildbot/scripts/windows.py
===================================================================
--- cs/buildbot/trunk/buildbot/scripts/windows.py	2011-05-12 18:06:28 UTC (rev 18350)
+++ cs/buildbot/trunk/buildbot/scripts/windows.py	2011-05-12 18:17:28 UTC (rev 18351)
@@ -45,6 +45,8 @@
     petsc_bin = petsc_dir + "/" + petsc_arch + "/bin"
 
     chaco = "chaco"
+    blas = "fblas"
+    lapack = "flapack"
     ml = "ml"
 
     if os.path.isdir(petsc_lib):
@@ -74,9 +76,14 @@
     libs = ["petsc"]
     if chaco:
         libs.append(chaco)
+    if blas:
+	libs.append(blas)
+    if lapack:
+        libs.append(lapack)
     if ml:
         libs.append(ml)
-    deps = ["-llapack", "-lblas", "-lgdi32", "-lgfortran"]
+    #deps = ["-lflapack", "-lfblas", "-lgdi32", "-lgfortran"]
+    deps = ["-lgdi32", "-lgfortran"]
 
     while libs:
         directory = ""



More information about the CIG-COMMITS mailing list