similar to: How do I prevent macOS from attempting to build my package?

Displaying 20 results from an estimated 200 matches similar to: "How do I prevent macOS from attempting to build my package?"

2018 Oct 03
1
grDevices::convertColor and colorRamp(space='Lab') Performance Improvements
`grDevices::convertColor` performance can be improved by 30-300x with small changes to the code. `colorRamp(space='Lab')` uses `convertColor` so it too benefits from substantial performance gains. `convertColor` vectorizes explicitly over the rows of the input color matrix using `apply`. The level-1 patch [1] illustrates a possible minimal set of changes to achieve this with just R
2007 Dec 13
0
[LLVMdev] Bogus X86-64 Patterns
On Dec 12, 2007, at 2:10 PM, David Greene wrote: > Tracking down a problem with one of our benchmark codes, we've > discovered that > some of the patterns in X86InstrX86-64.td are wrong. Specifically: > > def MOV64toPQIrm : RPDI<0x6E, MRMSrcMem, (outs VR128:$dst), (ins > i64mem:$src), > "mov{d|q}\t{$src, $dst|$dst, $src}", >
2007 Dec 12
2
[LLVMdev] Bogus X86-64 Patterns
Tracking down a problem with one of our benchmark codes, we've discovered that some of the patterns in X86InstrX86-64.td are wrong. Specifically: def MOV64toPQIrm : RPDI<0x6E, MRMSrcMem, (outs VR128:$dst), (ins i64mem:$src), "mov{d|q}\t{$src, $dst|$dst, $src}", [(set VR128:$dst, (v2i64 (scalar_to_vector
2009 Mar 04
1
CRAN package check on MacOS: sh: line 1: gs: command not found
Dear R developers, I recently observed a NOTE on several MaxOS X package checks: sh: line 1: gs: command not found !!! Error: Closing Ghostscript (exit status: 127)! /usr/bin/texi2dvi: thumbpdf exited with bad status, quitting. See for details: http://www.r-project.org/nosvn/R.check/r-release-macosx-ix86/simecol-00check.html or
2009 Apr 23
1
Dahi-tools Compilation on Ubuntu/Xen
Hi all, I'm trying to compile dahdi-tools on Ubuntu 8.04 on Xen (Amazon EC2 to be exact). dahdi-linux compiled and installed successfully, after which I do the following to install dahdi-tools: wget http://downloads.digium.com/pub/telephony/dahdi-tools/dahdi-tools-current.tar.gz tar xzvf dahdi-tools-current.tar.gz cd dahdi-tools* ./configure make make install make config Everything
2007 Feb 05
1
Build error with last R-devel tarball
Hi, On Windows, with last R-devel tarball (r40647) from ftp://ftp.stat.math.ethz.ch/Software/R/R-devel_2007-02-04.tar.gz I get the following build error: E:\biocbld\bbs-2.0-bioc\R\src\gnuwin32> make ... ... ---------- Making package utils ------------ adding build stamp to DESCRIPTION installing NAMESPACE file and metadata installing R files Error in namespaceExport(ns, exports) :
2018 May 03
2
Advice on upgrading to 3.5.0
On 3 May 2018 at 13:21, Jeroen Ooms wrote: | On Wed, May 2, 2018 at 10:35 AM, Robin Lovelace <rob00x at gmail.com> wrote: | > I'd be interested to hear views on how and when Ubuntu users should upgrade | > to R 3.5.0. | > I made the upgrade a few days ago but reverted because of issues installing | > packages such as rJava, which I installed on the system with r-cran-rjava. |
2014 May 24
3
[LLVMdev] Why can't atomic loads and stores handle floats?
Looking through the documentation, I discovered that atomic loads and stores are only supported for integer types. Can anyone provide some background on this? Why is this true? Currently, given code: std::atomic<float> aFloat; void foo() { float f = atomic_load(&aFloat); .. } Clang generates code like:|| %"struct.std::atomic.2" = type { float } @aFloat = global
2017 Jul 26
0
[R-pkgs] New Package vetr: Enforce Structural Requirements for S3 Objects
`vetr` implements a declarative template-based approach to verify that objects meet structural requirements, and auto-composes error messages when they do not. This package is intended to simplify a more formal use of S3 objects. The template concept is borrowed from `vapply`: >> vet(numeric(1L), 1:3) >? [1] "`1:3` should be length 1 (is 3)" >> vet(numeric(1L),
2018 Apr 02
0
New Package fansi: ANSI Control Sequence Aware String Functions
fansi provides counterparts to the base string manipulation functions substr, strwrap, strtrim, strsplit, and n(z)char that account for ANSI CSI SGR control sequences.? ANSI CSI SGR control sequences [1] can be used to format text in terminals that support them. For example the control sequence "\033[31m" causes text that follows to render in red, and the control sequence
2015 Oct 30
0
match.call enhancements in 3.2.2
I was thrilled to see this in the change log: > match.call() gains an envir argument for specifying the environment from which to retrieve the ... in the call, if any; this environment was wrong (or at least undesirable) when the definition argument was a function. This was an issue I ran into a few years ago.? I ended up writing my own version that allows specification of the environment, but
2018 Apr 02
0
New Package fansi: ANSI Control Sequence Aware String Functions
fansi provides counterparts to the base string manipulation functions substr, strwrap, strtrim, strsplit, and n(z)char that account for ANSI CSI SGR control sequences.? ANSI CSI SGR control sequences [1] can be used to format text in terminals that support them. For example the control sequence "\033[31m" causes text that follows to render in red, and the control sequence
2017 Nov 19
0
Debian backport on Stretch?
On 19 November 2017 at 19:02, Charles Plessy wrote: | Le Sat, Nov 18, 2017 at 03:26:53PM -0800, Bill Harris a ?crit : | > Incidentally, you can see a bit more complete description at | > https://unix.stackexchange.com/questions/402560/how-do-i-install-r-on-debian-stretch-given-the-r-api-3-issue | > . | | Hi Bill and everybody, | | if one installs R >= 3.4.2 from any source, then some
2018 May 02
0
Advice on upgrading to 3.5.0
Hi Robin, Thanks for asking here rather than on Twitter. I am old-school and think this is a better place / more searchable / more easy to expand. On 2 May 2018 at 09:35, Robin Lovelace wrote: | I'd be interested to hear views on how and when Ubuntu users should upgrade | to R 3.5.0. | | I made the upgrade a few days ago but reverted because of issues installing | packages such as rJava,
2018 May 03
0
Advice on upgrading to 3.5.0
On 5/3/18 7:43 AM, Dirk Eddelbuettel wrote: > > On 3 May 2018 at 13:21, Jeroen Ooms wrote: > | On Wed, May 2, 2018 at 10:35 AM, Robin Lovelace <rob00x at gmail.com> wrote: > | > I'd be interested to hear views on how and when Ubuntu users should upgrade > | > to R 3.5.0. > | > I made the upgrade a few days ago but reverted because of issues installing > |
2014 May 26
3
[LLVMdev] Why can't atomic loads and stores handle floats?
David provided one good answer. I'll give another. The current design pushes complexity into the language frontend for - as far as I know - no good reason. I can say from recent experience that the corner cases around atomics are both surprising and result in odd looking hacks in the frontend. To say this differently, why should marking loads and stores atomic required me to rewrite
2018 May 02
1
Advice on upgrading to 3.5.0
Many thanks Dirk, kind-of makes sense and I think my 'hold your horses' attitude is probably safest for now. Two follow-up questions: - Roughly how long will it be until "everything has been rebuilt"? - Could this seemingly new project help manage external deps: https://github.com/r-hub/sysreqsdb ? On Wed, May 2, 2018 at 1:23 PM, Dirk Eddelbuettel <edd at
2019 May 16
0
GPO-Error
Hai Stefan, What is the samba version your running now? Im now at 4.10.3 with my DC's and the command : samba-tool gpo list username Then it does show the GPO's for the user. If you on 4.10, check if these are installed : ii python3 3.5.3-1 amd64 interactive high-level object-oriented language (default python3 version) ii
2015 Sep 24
2
TargetTriple issue: LC_VERSION_MIN_MACOSX: Darwin kernel version vs SDK version
Hi everyone, I just reported the following issue: https://llvm.org/bugs/show_bug.cgi?id=24927 Using the Xcode 7 linker, one gets messages such as the following when linking objects generated using llvm: ld: warning: object file (foo.o) was built for newer OS X version (14.5) than being linked (10.9) The issue is the following: a) In lib/Support/Unix/Host.inc, sys::getDefaultTargetTriple()
2019 Dec 02
0
Debian Stretch - > buster: samba packages
Am 02.12.19 um 11:43 schrieb Rowland penny via samba: > On 02/12/2019 10:07, Stefan G. Weichinger via samba wrote: >> Am 02.12.19 um 08:47 schrieb L.P.H. van Belle via samba: >>> Hai, >>> >>> Sorry for the late reply. >> Never mind, weekend is important ... >> >>> Here its just apt-get distupgrade --autoremove --purge >>> Without