search for: mytmp

Displaying 3 results from an estimated 3 matches for "mytmp".

Did you mean: mycmp
2007 Mar 31
2
[LLVMdev] native libraries
...vm does not support native libraries? Furthermore, what exactly is meant by that? In particular, I have bytecode that I want to turn into a native executable and it needs to be linked against a dynamic (.so) library that I've created. So, I run the following command: > llvm-ld -native -o mytmp.exe -L. -lmytmp1 mytmp2.bc mytmp3.bc When I do so I get the following warning: > llvm-ld: warning: Supposed library 'mytmp1' isn't a library. However, the executable seems to work fine, and seems to find libmytmp1.so through LD_LIBRARY_PATH just fine. Is it safe to ignore the war...
2013 Dec 02
0
g++ ignores TMPDIR when called from install.packages
...I am personally using RAppArmor to enforce security policies, but an easier way to reproduce the problem is by temporarily disable write access for non-root users to /tmp. Something like this (run as non-root): #disable default tmp location sudo chmod 755 /tmp #run R with custom tempdir mkdir ~/mytmp TMPDIR=~/mytmp R #in R: tempdir() #verify Sys.getenv("TMPDIR") #doublecheck install.packages("RcppExamples") #or any other c++ package The compiling seems to be OK, but when creating the shared library g++ throws an error (see below). When using apparmor, it actually gives a...
2007 Apr 01
0
[LLVMdev] native libraries
...ave to go get familiar with the code again to know. > > In particular, I have bytecode that I want to turn into a native > executable and it needs to be linked against a dynamic (.so) library > that I've created. So, I run the following command: > > > llvm-ld -native -o mytmp.exe -L. -lmytmp1 mytmp2.bc mytmp3.bc > > When I do so I get the following warning: > > > llvm-ld: warning: Supposed library 'mytmp1' isn't a library. > > However, the executable seems to work fine, and seems to find > libmytmp1.so through LD_LIBRARY_PATH just...