search for: longcall

Displaying 5 results from an estimated 5 matches for "longcall".

Did you mean: mlongcall
2007 Dec 10
1
Building R on Sun Solaris 10 (SPARC) using Sun Studio 12
...r = function(e) { call <- > conditionCall(e) if (!is.null(call)) { if > (identical(call[[1]], quote(doTryCatch))) call <- > sys.call(-4) dcall <- deparse(call)[1] prefix <- > paste("Error in", dcall, ": ") LONGCALL <- 30 if > (nchar(dcall) > LONGCALL) prefix <- paste(prefix, "\n\t", > sep = "") } else prefix <- "Error : " msg <- paste(prefix, > conditionMessage(e), "\n", sep = "") > .Internal(seterr...
2008 Mar 12
1
gracefully handing a library load error
...ndlers) 6: tryCatch(expr, error = function(e) { call <- conditionCall(e) if (!is.null(call)) { if (identical(call[[1]], quote(doTryCatch))) call <- sys.call(-4) dcall <- deparse(call)[1] prefix <- paste("Error in", dcall, ": ") LONGCALL <- 30 if (nchar(dcall) > LONGCALL) prefix <- paste(prefix, "\n\t", sep = "") } else prefix <- "Error : " msg <- paste(prefix, conditionMessage(e), "\n", sep = "") .Internal(seterrmessage(msg[1])) if (!si...
2007 May 11
0
data.entry bugs
...handlers) 9: tryCatch(expr, error = function(e) { call <- conditionCall(e) if (!is.null(call)) { if (identical(call[[1]], quote(doTryCatch))) call <- sys.call(-4) dcall <- deparse(call)[1] prefix <- paste("Error in", dcall, ": ") LONGCALL <- 30 if (nchar(dcall) > LONGCALL) prefix <- paste(prefix, "\n\t", sep = "") } else prefix <- "Error : " msg <- paste(prefix, conditionMessage(e), "\n", sep = "") .Internal(seterrmessage(msg[1])) if (...
2007 Oct 04
0
Rexcelpoi
..., error = function(e) { call <- conditionCall(e) if (!is.null(call)) { if (identical(ca ll[[1]], quote(doTryCatch))) call <- sys.call(-4) dcall <- deparse(call)[1] prefix <- paste ("Error in", dcall, ": ") LONGCALL <- 30 if (nchar(dcall) > LONGCALL) prefix <- paste(prefi x, "\n\t", sep = "") } else prefix <- "Error : " msg <- paste(prefix, conditionMessage(e), "\n", sep = "") .Internal(seterrmessage(msg[1]))...
2010 Mar 12
1
[LLVMdev] large modules, PPC on OS X, "ld: 32-bit pic-base out of range in"
...>> g++ -o mybundle.bundle -bundle mybundle.o -lotherlibrary >> >> I get the following error: >> ld: 32-bit pic-base out of range in somefunction(Array<unsigned >> char, 40ul> const&)from mybundle.o >> >> Normally I'd try to build with the -mlongcall option, but it >> doesn't appear that llc has support for this. Is there some way to >> get llc to generate "long calls"? > > I thought that -mlongcall was a linker option? Have you tried > passing it to GCC/G++ when you link the .s file? -mlongcall is de...