Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagesmc
Path: blob/master/build/pkgs/atlas/patches/threads.patch
8818 views
1
diff -drNu src.orig/bin/atlas_install.c src/bin/atlas_install.c
2
--- src.orig/bin/atlas_install.c 2013-01-08 19:15:41.000000000 +0100
3
+++ src/bin/atlas_install.c 2013-05-17 18:16:01.004809341 +0200
4
@@ -1075,8 +1075,13 @@
5
PrintStartStop(stdout, fpsum, 3, 1, 5, 1, 0, "FINAL STATIC LIBRARY UPDATE");
6
sprintf(ln2, "INSTALL_LOG/LIBUPDATE.LOG");
7
PrintBanner(ln2, 1, 5, 1, 1);
8
- sprintf(ln, "%s IBuildLibs IBuildPtlibs0 %s %s\n", fmake, redir, ln2);
9
+ sprintf(ln, "%s IBuildLibs %s %s\n", fmake, redir, ln2);
10
fprintf(stdout, ln);
11
+#ifdef ATL_NCPU
12
+ PrintBanner(ln2, 1, 5, 1, 2);
13
+ sprintf(ln, "%s IBuildPtlibs0 %s %s\n", fmake, redir, ln2);
14
+ fprintf(stdout, ln);
15
+#endif
16
ATL_Cassert(system(ln)==0, "STATIC LIBRARY UPDATE", ln2);
17
PrintBanner(ln2, 0, 5, 1, 1);
18
PrintStartStop(stdout, fpsum, 3, 0, 5, 1, 0, "FINAL STATIC LIBRARY UPDATE");
19
20