Displaying 2 results from an estimated 2 matches for "libopenmp".
2008 Feb 05
6
system gets suspended automatically!
Hello!
I am running CentOS-5 with latest kernel available by deault (2.6.23).
I installed it on a Dell XPS machine having Intel Quad processors (4
parallel cpus). I use it to run a computational program and I need to
keep the program running for 1-2 months continuously. I generally boot
it in runlevel-3 with network ON without X and use ssh from another
machine to connect and run the program
2014 Nov 03
8
[LLVMdev] [PATCH] Protection against stack-based memory corruption errors using SafeStack
...runtime library is linked in, even though it might not be referenced by
+    // any code in the module before LTO optimizations are applied.
+    CmdArgs.push_back("-u");
+    CmdArgs.push_back("___llvm__safestack_init");
+  }
+
   Args.AddAllArgs(CmdArgs, options::OPT_L);
 
   LibOpenMP UsedOpenMPLib = LibUnknown;
@@ -6092,6 +6137,8 @@ void solaris::Link::ConstructJob(Compilation &C, const JobAction &JA,
 
   CmdArgs.push_back(Args.MakeArgString("-L" + GCCLibPath));
 
+  addSafeStackRT(getToolChain(), Args, CmdArgs);
+
   Args.AddAllArgs(CmdArgs, options::OPT_L);...