Displaying 2 results from an estimated 2 matches for "runtimelib".
2012 Nov 07
0
rJava not loading on Windows
Hi,
I've successfully used it on a Linux setup, but when I try to load
rJava on Windows 7 64-bit (session info below) I get:
% R --vanilla
> library("rJava")
Error : .onLoad failed in loadNamespace() for 'rJava', details:
  call: dirname(this$RuntimeLib)
  error: a character vector argument expected
Error: package/namespace load failed for 'rJava'
> traceback()
2: stop(gettextf("package/namespace load failed for %s", sQuote(package)),
       call. = FALSE, domain = NA)
1: library("rJava")
For the record, I have Jav...
2011 Apr 06
2
[LLVMdev] Target independency using "opaque"? How to do it else?
...using an "opaque" type instance in place of 
"size_t". When loading the IR module, I would refine the "opaque" to either 
i64 or i32, depending on which target I'm using. 
For example I currently have
    ; these opaque types are replaced at load time by codegen::RuntimeLib
    %sizet_ty = type opaque
    %intptrt_ty = type opaque
    ; ... then in a function I do:
    %sizeof_value_ty = ptrtoint %value_ty* getelementptr (%value_ty* null, 
i32 1) to i32
   %numBytesToAlloc = mul i32 %num, %sizeof_value_ty
   %numBytesSizeT = bitcast i32 %numBytesToAlloc to %sizet_ty...