search for: celerier

Displaying 20 results from an estimated 28 matches for "celerier".

2018 Jun 14
2
Success: Bring-up of LLVM/clang-built Linux ARM(32-bit) kernel for Android - Nexus 5
...me can be found below. To be fair, the GCC version which comes with the android ndk has not been updated for four years, while the clang version is kept up-to-date. It would be interesting to compare clang and GCC latest releases instead... that's where the future lies :p ------- Jean-Michaël Celerier http://www.jcelerier.name -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180615/6347cc75/attachment-0001.html>
2020 Oct 05
2
LLJIT: __{math}_finite symbols not resolved ?
...ink you need a glibc-2.31 at least for that behaviour to be visible)'s glibc symbols became versioned. Removing either the -fmath-errno or -ffinite-math-only flag for the clang cpp -> bitcode invocation in build.sh fixes the issue (at the expense of potentially slower code). <http://www.jcelerier.name> Thanks for the hint, sadly it's not possible to take the address of __log_finite : what happens is that you call the function e.g. log() in your code, and either clang or some magic glibc header transforms that into __log_finite further down the pipeline (see e.g. the discussion in htt...
2007 Jun 01
1
RFC: making the xen startup integrate better with distros
What follows below is an outline of what we''re changing in Xen startup for Fedora 8. I know historically when getting into initscripts you tend to hit distro specific issues. So I''m posting this to see if there''s any interest from others in having these changes integrated upstream. I''d like to thing that with a few minor tweaks this is general enough to be
2020 Oct 05
2
LLJIT: __{math}_finite symbols not resolved ?
...it yet though. Depending on what is required we > can either try to implement it there, or aim to fix it in the newer JITLink > linker -- a few people are working on an initial implementation of that at > the moment. > > -- Lang. > > On Mon, Oct 5, 2020 at 12:52 AM Jean-Michaël Celerier via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> Hello, >> when building code with -Ofast -ffinite-math-only -ffast-math, clang >> generates calls to "finite" variants of math functions. >> >> This has been the source of a fair amount of i...
2018 Mar 17
1
MCJIT with LLVM >= 5.0 on Windows 64
.../blob/master-dev/compiler/generator/llvm/llvm_dynamic_dsp_aux.cpp I also found this topic which could be relevant, but I'm not knowledgeable enough to tell : https://groups.google.com/forum/#!topic/llvm-dev/mfbmC5o09CY [1] https://github.com/grame-cncm/faust/issues/158 ------- Jean-Michaël Celerier http://www.jcelerier.name -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180317/36e582bb/attachment.html>
2008 Jul 22
2
Rsync job exiting with error "unexpected tag 3 [sender]"
Hello everyone. I have this issue: I?m rSyncing three folders from my main server to my backup server. Main is Ubuntu 7.10 64 bit and backup is Ubuntu 6.10 32 bit. Both are Rsync 3.0.2. Please advise me if there any other debug information I should provide. I get this output: building file list ... done Attachments_Redmine.tar.gz BackupRedmine.sql calidad/ calidad/DESVIOS QQ 1.2 ADVANTEK
2007 Jul 02
2
Object Property Sorting - Hash?
I''m trying to sort an object by its property names. As I understand it, iterating over an object using for...in or using Hash.each() (or Hash.sortBy()) does not guarantee the order of the properties. Is there an easy and low-overhead way to guarantee order? Or would I need to have some type of collection object that uses arrays instead of the property-value configuration that Hash
2020 Oct 05
2
Clang API: any way to use a virtual filesystem ?
Hello, I am shipping my app (https://ossia.io) with an embedded clang to allow people to write extensions in C++ at run-time. For that to work I also ship a SDK with all the required headers, libc++, etc... which is downloaded & extracted in some folder. Problem is: while on my linux dev. machine this operation is fast, apparently on Windows and mac extracting a .zip with a few thousand
2018 Nov 06
2
Trying to cross-compile LLVM runtimes to Windows
...not with libc++, and I don’t remember running into any problems. One thing that’s not clear to me is why the resource compiler is even being invoked at all On Tue, Nov 6, 2018 at 5:46 AM Martin Storsjö via llvm-dev < llvm-dev at lists.llvm.org> wrote: > On Tue, 6 Nov 2018, Jean-Michaël Celerier via llvm-dev wrote: > > > I have been using this project with great success to achieve this : > > https://github.com/mstorsjo/llvm-mingw > > > > It generates a linux-based windows cross-compiler with clang, libc++, > etc. > > FWIW, lately I've added prebuilt...
2016 Sep 06
1
Whether to use systemd to start services
I'm wondering if it's normally required to start services with systemd as opposed to sysv? I currently load a few services using the old init.d/service funtionality, which still works fine. Is this ok or is sysv going to be fully discontinued in the future? The service I load is celeryd via init.d but so far finding few pointers as to how to do this with a celery.service file. I can load
2008 Jun 06
1
rsync daemon not answering
Hi everyone. I have a problem: I was running rsync --daemon on a Ubuntu 6.10 linux without problems. I used it to sync our company intranet from a Windows host through deltacopy. Then I migrated my system to new hardware and installed Ubuntu 7.10 on it. I run rsync --daemon with the same rsyncd.conf file and it?s not listening to any requests. I?m trying to sync the same directories from the
2010 Sep 16
5
DO NOT REPLY [Bug 7683] New: New rsync deletes destination files it shouldn't
https://bugzilla.samba.org/show_bug.cgi?id=7683 Summary: New rsync deletes destination files it shouldn't Product: rsync Version: 3.0.7 Platform: x86 OS/Version: Linux Status: NEW Severity: critical Priority: P3 Component: core AssignedTo: wayned at samba.org ReportedBy:
2018 Nov 06
3
Trying to cross-compile LLVM runtimes to Windows
I have been using this project with great success to achieve this : https://github.com/mstorsjo/llvm-mingw It generates a linux-based windows cross-compiler with clang, libc++, etc. I was able to build a large part of Qt with it afterwards for instance. Best, Jean-Michaël On 06/11/2018 04:21, Petr Hosek via llvm-dev wrote: > I've tried building libc++ for Windows on Linux by setting
2020 Oct 05
2
LLJIT: __{math}_finite symbols not resolved ?
Hello, when building code with -Ofast -ffinite-math-only -ffast-math, clang generates calls to "finite" variants of math functions. This has been the source of a fair amount of issues in a "normal", non-JIT pipeline, which seem to have been fixed over time - a simple fix being recompiling the target app against the new glibc. - https://bugs.llvm.org/show_bug.cgi?id=44842 -
2020 Jul 15
4
Support for macOS feth devices
Hi, I am currently using the L2 tunnel feature of ssh between two Linux machines, and it works beautifully! As a result, I have come to prefer a workflow that uses an L2 tunnel, but I can't seem to find a long-term solution for this workflow on macOS. At the moment, tap devices on macOS can be generated using a kernel extension like tuntaposx <http://tuntaposx.sourceforge.net/>;
2018 Jun 13
4
Success: Bring-up of LLVM/clang-built Linux ARM(32-bit) kernel for Android - Nexus 5
Hello, I would like to share my successful bring-up of LLVM/clang-built Linux ARM(32-bit) hammerhead kernel for Android running on my Nexus 5 smartphone. After having successfully brought up LLVM/clang-built Linux kernel(since v4.15.7 to the most recent v4.17) on x86_64, I was interested in accomplishing the same on the ARM platform of my Nexus 5 - Android smartphone. So, here is the complete
2004 Dec 28
1
Meetme scalable to 300 people?
Hi everyone. I am looking at providing a conference for up to 300 people and was wondering if anyone has scaled meetme to 300 people. Here are some points: 1) I am using an IAX2 gateway hosted on a VOIP service provider. 2) The machine is hosted at the providers site so one has to assume that bandwidth is not going to be an issue. 3) Everything is coming in as ULAW so we won't need to
2020 Jul 15
2
Support for macOS feth devices
On Wed, 15 Jul 2020, Peter Stuge wrote: > is GPL-licensed, so a derivative of that can't be integrated into OpenSSH. A derivative of it, that exposes a general API to do tap-device-like things using stdio and command line options, could be called over its general API from OpenSSH though. Even be developed separately (this would, in fact, even help). bye, //mirabilos -- ?MyISAM tables
2002 Jun 24
2
Please Help FreeBSD 4.5 and XP
All I will try to keep this short but I can't get any of my windows boxes to join the domain they include winXP, win2k, win9x. Server FreeBSD 4.5 Samba from Ports 2.2.2 Celery 400 with 512 meg of ram 120gig of Raid 5 U2W drives I added the machine names to samba in freebsd you must use vipw because there is no adduser plus it has a hard time with the $ at the end of the machine
2004 Dec 13
3
CPU spikes with wcfxs loaded
I need to reopen this discussion because it's impossible to run spandsp (and VoIP) under these circumstances. With zaptel unloaded, I see the following "vmstat 1" output: no swapping, an occasional disk output, +/- 1003 interrupts/sec., less than 10 context switches/sec., CPU idle 100%. A very quiet system. I load modules zaptel and wcfxo, and the system utilization stays the