similar to: Compiling xapian on Ubuntu Breezy

Displaying 20 results from an estimated 500 matches similar to: "Compiling xapian on Ubuntu Breezy"

2020 Apr 15
3
Backend emitting to string instead of file
I can use llc to compile my IR module to amdgcn with some non-zero output. However, if try to write the output (assembly or object) to a string (via buffer_ostream) the resulting string has always zero length. Here the code changes I do: Original llc:       if (Target->addPassesToEmitFile(PM, *OS,                                       DwoOut ? &DwoOut->os() : nullptr,
2019 Aug 16
2
[ORC] [mlir] Dump assembly from OrcJit
+ MLIR dev mailing list since that’s where the OrcJit I’m using is. Thanks for all the details, Lang! What you described is exactly what I’m looking for! Please, MLIR dev, let me know if this debug feature and the solution that Lang describes below is interesting for MLIR. I’ll dig more into the details then but it doesn’t seem too complicated. Thanks, Diego From: Lang Hames [mailto:lhames at
2015 Mar 17
2
Reduce memory peak when serializing to raw vectors
Presumably one could stream over the data twice, the first to get the size, without storing the data. Slower but more memory efficient, unless I'm missing something. Michael On Tue, Mar 17, 2015 at 2:03 PM, Simon Urbanek <simon.urbanek at r-project.org> wrote: > Jorge, > > what you propose is not possible because the size of the output is > unknown, that's why a
2006 May 05
0
New Ubuntu Breezy and Dapper APT repository - stop using sourceforge!
Greetings folks, Since the sourceforge apt repository is woefully limited to just one distribution version, and because it is exceedingly slow and times out a lot, budgetdedicated.com has graciously donated us a blazing fast server to host the fresh Ubuntu packages. To use the APT repository, simply edit 'sudo gedit /etc/apt/sources.list' and then add the following lines, depending on
2006 Mar 15
0
X11 fonts problem with ubuntu breezy
Hello I have big trouble getting R to work correctly with X11 fonts on Ubuntu Breezy 5.10. I was hoping somebody could help me with this issue. The first part of the problem is that I get the error "could not find any X11 fonts" for any command with graphical ouput, for example "demo(graphics)": ------------------------------------------------------- R : Copyright 2005,
2006 Feb 26
9
State of the Breezy
What''s the current state of Rails installation on a fresh Ubuntu Breezy? I''ve just set up a laptop with a fresh installation, and tried to install ruby et al, and got nowhere fast. The default ruby is 1.8.3, and compiling the source for 1.8.4 leaves the rubygems setup.rb breaking unable to find zlib (and yes, I have checked for zlib1g-dev and readline). Is there a known
2006 Mar 25
7
upgrade to 1.1RC on ubuntu breezy
How do I upgrade my rails to 1.1RC - running Ubuntu breezy and I had installed rails using apt-get in universe. -- Posted via http://www.ruby-forum.com/.
2018 Jun 07
2
[lld] ObjFile::createRegular is oblivious of PendingComdat
I encountered a segfault when using lld to cross-compile for Windows (+MinGW) from Linux. The problem happens with objects built by gcc. The problem is that ObjFile::CreateRegular considers a PendingComdat to be valid (and later causes an illegal pointer dereference). The following patch fixes the crash: diff --git a/COFF/InputFiles.cpp b/COFF/InputFiles.cpp index 9e2345b0a..f47d612df 100644
2006 Jun 23
3
problem installing gsl package under Ubuntu Breezy Badger
I am trying to install the gls package (a wrapper for GNU scientific library special functions) package under Ubuntu 5.10. I have gls-bin (the debian GNU Scientific Library binary package). When I try to install the R package, I receive the following. > install.packages("gsl",dependencies=T) Warning in install.packages("gsl", dependencies = T) : argument
2018 Jun 07
2
[lld] ObjFile::createRegular is oblivious of PendingComdat
Can you upload a reproducer? You can create it using the /linkrepro flag. Peter On Thu, Jun 7, 2018 at 2:50 PM, Reid Kleckner via llvm-dev < llvm-dev at lists.llvm.org> wrote: > GCC does comdats completely differently from the spec. Since you contacted > me about this off of the mailing list, I started investigating what they > do, and it is completely different. It's
2004 Apr 17
1
Reading OGG embedded in a pack file
I have a number of assets packed into a single file. Some of these are OGG files. I have code to seek to the start of an embedded file, but cannot find any OGG functions that let me start at an arbitary point in a stream. The original code (which works) that opens a stream, then reads in the OGG data starts like this: // Read from an already open stream. // Assumes stream is positioned to
2015 Mar 17
2
Reduce memory peak when serializing to raw vectors
Hi, I've been doing some tests using serialize() to a raw vector: df <- data.frame(runif(50e6,1,10)) ser <- serialize(df,NULL) In this example the data frame and the serialized raw vector occupy ~400MB each, for a total of ~800M. However the memory peak during serialize() is ~1.2GB: $ cat /proc/15155/status |grep Vm ... VmHWM: 1207792 kB VmRSS: 817272 kB We work with very
2006 Jan 17
1
How to loop a Vobis sound ?
The sound file is played correctly for the first time, then when rewind to the initial position. then copy PCM to buffer, the OpenAL report an error. It seems like the OpenAL doesn't recognize the PCM data. The OpenAL error number : AL_INVALID_VALUE 0xA003 void Buffer::PCMData (ALuint id, ALenum eFormat, ALvoid *data, ALsizei size, ALsizei freq) { // Copy
2004 Dec 23
0
GTA3 problems
I'm using the current cvs version of wine and have been using Grand Theft Auto 3 for a month or so with only a few issues. After updating and recompiling wine last night I encountered a pretty major problem, cut scenes refuse to end. They play through alright, but when it comes to the end of the scene the game doesn't resume. Out of curiosity I backed up my ~/.wine directory and used
2015 Mar 17
0
Reduce memory peak when serializing to raw vectors
Jorge, what you propose is not possible because the size of the output is unknown, that's why a dynamically growing PStream buffer is used - it cannot be pre-allocated. Cheers, Simon > On Mar 17, 2015, at 1:37 PM, Martinez de Salinas, Jorge <jorge.martinez-de-salinas at hp.com> wrote: > > Hi, > > I've been doing some tests using serialize() to a raw vector: >
2015 Mar 17
0
Reduce memory peak when serializing to raw vectors
In principle, yes (that's what Rserve serialization does), but AFAIR we don't have the infrastructure in place for that. But then you may as well serialize to a connection instead. To be honest I don't see why you would serialize anything big to a vector - you can't really do anything useful with that ... (what you couldn't do with the streaming version). Sent from my iPhone
2008 Jul 31
2
C versions of serialize/unserialize in packages
Are the functions 'R_Unserialize' and 'R_InitFileInPStream' allowed to be used in R packages? I guess I'm just not clear on the implications of this comment in 'Rinternals.h': /* The connection interface is not yet available to packages. To allow limited use of connection pointers this defines the opaque pointer type. */ I have a function in the
2009 Mar 06
3
Explorer - DirectX and ActiveX
Hello! I'll be running a web project in a future that has a "3d city" built in. Unfortunately the makers of this 3dcity were enough braindamaged to make it as activeX component, so it only works for IE users. The first rational step was to install explorer with ies4linux script and it works briliantly (IE6)! The activeX component does install and start, however it is saying there
2005 Dec 30
1
Internet Explorer 6 crashes after upgrading to Wine 0.9.4
Hello all, I am running an Ubuntu system here (Debian-based) and today I got an upgarde from Wine-HQ to version 0.9.4 from the Wine-HQ repository. I have Internet Explorer 5, 5.5 and 6 installed from IEs4Linux (http://www.tatanka.com.br/ies4linux/en/instructions/) which uses the Internet Explorers from the Browser Archive (http://browsers.evolt.org/download.php?/ie/32bit/6.0/ie60.exe). After
2002 Feb 12
2
Vorbis as a benchmark
Seeing the discussion on using vorbis as a benchmark has prompted me to post a few results that I have. Times are as reported by oggenc. I used track 8 on Stereolab's Dots and Loops album. It's 334 seconds long. Tests on windows machines used the windows oggenc binary from www.vorbis.com Tests on unix machines used oggenc compiled on that machine. Compaq PIII - WinNT (1000 MHz) - 91