similar to: [LLVMdev] Using result of config-ix in custom tool.

Displaying 20 results from an estimated 6000 matches similar to: "[LLVMdev] Using result of config-ix in custom tool."

2016 Aug 25
1
sort.int(c(2, NA, 4), index.return=TRUE, na.last=NA, method)$ix differ for method="radix" and "shell"/"quick" (+ new default in R-devel)
Does sort.int(c(2,NA,4), index.return=TRUE, na.last=NA, method="radix")$ix give the intended result, because I get: > sort.int(c(2,NA,4), index.return=TRUE, na.last=NA, method="radix") $x [1] 2 4 $ix [1] 1 3 With method="shell" and method="quick" in R devel, I get: > sort.int(c(2,NA,4), index.return=TRUE, na.last=NA, method="shell") $x
2011 Jan 05
0
[LLVMdev] include/Config/config.h discrepancies between CMake and autofoo builds
arrowdodger <6yearold at gmail.com> writes: >> Or to say it with other words: patches welcome. > > So, how should i proceed? Make CMake-generated config to be identical to > autotools one? That would be a good thing. Please note that some checks are a bit tricky. A function that on platform A is on header foo.h on another platform may be on bar.h. Furthermore, cmake's
2016 Apr 25
2
IX Out of Order?
Hi, It seams that ix.dovecot.fi has not build a new version since 2016-04-19 20:03 regards, -- Harald Leithner ITronic Wiedner Hauptstra?e 120/5.1, 1050 Wien, Austria Tel: +43-1-545 0 604 Mobil: +43-699-123 78 4 78 Mail: leithner at itronic.at | itronic.at
2016 Apr 27
2
IX Out of Order?
Stephan Bosch, Mon, 25 Apr 2016 15:16:55 +0200: > Oops. Turned off package composer for maintenance, but didn't turn it > back on. > > It is building now..... Is there something to turn on to build packages in /debian/pool/wheezy-auto/dovecot-2.2 ? Or don't you provide packages for wheezy anymore? > Op 25-4-2016 om 14:47 schreef Harald Leithner: >> Hi, >>
2001 Sep 24
1
Newbie to Samba - getting '^M' characters from NT into PVCS o n UN IX
Hello Tony, Samba isn't the 'culprit', just the media used. Samba does NOT insert anything into the files that you copy over or have an application create on a samba share. The issue is that you are using a PC program to check out/modify the files, and pc os'es (Win/dos, i mean) use crlf as a ascii line terminator. Unix uses a lf only. So when you view the files with a pc
2009 Nov 13
2
xend:default won''t start due to /usr/bin/kstat not locating autosplit.ix
Short:     Which package do I need to install to get "auto/I18N/Langinfo/autosplit.ix"? Long: The problem I have was discussed almost a year ago (see this thread), but the resolution was not complete... I''m using Mark Johnson''s slim.py script (package list below), against repo=http://pkg.opensolaris.org/dev, followed by `pkg install xvm-gui` and `svcadm enable
2003 May 15
3
Linux SIP/IX clients
DOes anyone have any good suggestions as to good SIP or IAX clients for linux? I have set up and am currently testing asterisk in a controlled environment. I have gnophone running on one of my boxes but the gnophone site has been down. So I can't seem to fing the IAX and Ix-devel rpms or the gsm and gsm-devel rpms. So that prevents me from setting up gnophone on another box. I am
2011 Sep 03
1
[LLVMdev] LLVM: Cannot instantiate JIT execution engine
Isn't there someone to help me with this issue? I'm very upset about this stupid problem which wasted the whole day. BTW, I can create JIT from main.cpp, but not in the required source file (runtime.cpp), so this is not about linking. Very weird. 2011/9/2 Semion Prihodko <semion.ababo at gmail.com> > I cannot call the constructor explicitly, because ForceJITLinking is a name
2011 Sep 03
0
[LLVMdev] LLVM: Cannot instantiate JIT execution engine
I see two problems in your code 1) you need to #include "llvm/ExecutionEngine/JIT.h" 2) you must pass an empty string to EngineBuilder::setErrorStr. See JIT::createJIT for the reason. Jeff On Sat, Sep 3, 2011 at 8:33 AM, Semion Prihodko <semion.ababo at gmail.com> wrote: > Isn't there someone to help me with this issue? I'm very upset about this > stupid problem
2011 Jan 27
0
[LLVMdev] CMake-generated llvm-config.
[cc-ing llvm-dev] arrowdodger <6yearold at gmail.com> writes: > Hello. I've found that CMake-generated llvm-config contains -pedantic flag, > if LLVM_ENABLE_PEDANTIC was ON during cmake configuration. > This forces all llvm-config clients to build their sources with -pedantic, > which, i think, is kind of wrong. > For example, it's not possible to build LDC (LLVM D
2011 Jan 27
0
[LLVMdev] CMake-generated llvm-config.
arrowdodger <6yearold at gmail.com> writes: > On Thu, Jan 27, 2011 at 3:50 PM, Óscar Fuentes <ofv at wanadoo.es> wrote: > >> How do they build their frontend? >> > They are running llvm-config. And it gives -pedantic, if it was generated by > CMake build. If i build LLVM with autoconf, then everything is fine. > > Here is output of llvm-config built by
2011 Jan 27
0
[LLVMdev] CMake-generated llvm-config.
arrowdodger <6yearold at gmail.com> writes: >> Here is output of llvm-config built by CMake: > >> ~/.local/llvm/bin/llvm-config --cflags >> -I/usr/home/arr/.local/llvm/include -O3 -DNDEBUG -D__STDC_LIMIT_MACROS >> -D__STDC_CONSTANT_MACROS -Wall -W -Wno-unused-parameter -Wwrite-strings >> -pedantic -Wno-long-long >> > Note -pedantic here. Committed
2011 Nov 11
0
[LLVMdev] Argument's types mismatch when creating CallInst.
On Fri, Nov 11, 2011 at 12:18 AM, arrowdodger <6yearold at gmail.com> wrote: > Hello. I have an .bc, which defines @foo(%type* arg1, %type* arg2, %type* > arg3). > Firstly, i do this: > > runtimeModule = getLazyIRFileModule("runtime.bc", smd, llctx); > > then this: > > fooFunction = runtimeModule->getFunction("foo"); > myType =
2011 Jan 05
2
[LLVMdev] include/Config/config.h discrepancies between CMake and autofoo builds
On Jan 5, 2011, at 6:34 AM, Óscar Fuentes wrote: > arrowdodger <6yearold at gmail.com> writes: > >>> Or to say it with other words: patches welcome. >> >> So, how should i proceed? Make CMake-generated config to be identical to >> autotools one? > > That would be a good thing. > > Please note that some checks are a bit tricky. A function that
2014 Feb 07
8
[Bug 74648] New: Ultima IX (wine) movie playback crashes game
https://bugs.freedesktop.org/show_bug.cgi?id=74648 Priority: medium Bug ID: 74648 Assignee: nouveau at lists.freedesktop.org Summary: Ultima IX (wine) movie playback crashes game QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All) Reporter: christopher at
2013 Oct 03
1
ixgbe/ix sysctl missing in FreeBSD 9.2
Hello everyone, I am trying to tweak some of the sysctl tunables for the ix (ixgbe) driver in FreeBSD 9.2 since I am experiencing less than ideal performance and it seems like I can't find any: # sysctl -a | grep -i ixgbe device ixgbe I am running 9.2-RC4. Any input appreciated. Thanks, -- Rumen Telbizov Unix Systems Administrator <http://telbizov.com>
2010 Oct 19
1
Doubt on using lattice
Hi all, I suppose this is a very simple question, but as I've lost already a bit of time with it, without being able to get what I wanted, I'm addressing the question to the group in the hope someone can help me. I pretend to plot the richness of herbaceous species (RichHN) as a function of time since remnant isolation (Isol) conditioned to the area of the remnant (fArea - this is a
2018 Sep 21
2
can't build/run after adding lib to Fibonacci example, even reverting the complete llvm tree does not help
my build environment: Win7 x64 VStudio 2017 Community Edition 15.8.4 (latest) CMake 3.12.1 (x86) git 2.19.0 (latest, x64) Python 2.7.2 (x86) x64 Native Tools Command Prompt for VS 2017 directory structure: test     llvm <-- git clone https://github.com/llvm-mirror/llvm, git checkout release_70       tools         clang <-- git clone https://github.com/llvm-mirror/clang, git checkout
2016 Nov 19
2
[Bug 2640] New: Make gnome-ssh-askpass2 buildable with GTK+ 3
https://bugzilla.mindrot.org/show_bug.cgi?id=2640 Bug ID: 2640 Summary: Make gnome-ssh-askpass2 buildable with GTK+ 3 Product: Portable OpenSSH Version: 7.3p1 Hardware: All OS: Linux Status: NEW Severity: enhancement Priority: P5 Component: Miscellaneous Assignee:
2009 Feb 18
1
rbind: number of columns of result is not a multiple of vector length (arg 1)
i have the following constructed and running very well,, thanks to Gabor Grothendieck for his help. >data.info <- c("station.id", "year", "date", "max.discharge") > > for(i in 1:num.files) { + station.id <- substring(data[i], 1,8) + DF <- read.table(data[i], sep=",", blank.lines.skip = TRUE) + z <- zoo(DF[,4],