search for: l76

Displaying 20 results from an estimated 20 matches for "l76".

Did you mean: l6
2017 Apr 05
2
Very hard to reproduce bug (?) in R-devel
...tor-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g It looks like it gets those settings from running R CMD config CFLAGS with the already-installed version of R (3.3.3) which comes from a .deb package. https://github.com/rocker-org/rocker/blob/master/r-devel/Dockerfile#L76 I've also compiled R (again, in Docker) and tested with that, and gotten the same results. It basically uses just `./configure --without-recommended-packages` and then `make`. [[alternative HTML version deleted]]
2015 Feb 13
2
[LLVMdev] [Compiler-rt] i386 is not supported in compiler-rt build
...iler-RT supported architectures: x86_64;i386 I am curious about why its not supporting i386 with clang, as this clang can compile a simple program for i386. Looking into cmake file, it looks like i386 is failing this <https://github.com/llvm-mirror/compiler-rt/blob/master/cmake/config-ix.cmake#L76> test. I have checked variables for both the target, which looks fine to me: -- {CAN_TARGET_x86_64}: TRUE -- {CMAKE_BINARY_DIR}: /home/mohit/compiler-rt_build -- {SIMPLE_SOURCE}: /home/mohit/compiler-rt_build/CMakeFiles/simple.cc -- {TARGET_x86_64_CFLAGS}: -m64 -- TARGET_{arch}_OUTPUT: TARGET_...
2017 Apr 05
0
Very hard to reproduce bug (?) in R-devel
...ng | -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g | It looks like it gets those settings from running R CMD config CFLAGS with | the already-installed version of R (3.3.3) which comes from a .deb package. | https://github.com/rocker-org/rocker/blob/master/r-devel/Dockerfile#L76 That's a Debian default a Policy-conforming offical package must use. For Docker you get these from the (prebuild) .deb package, you get it when you do r-devel by hand as they come back in via R CMD CONFIG: https://github.com/rocker-org/rocker/blob/master/r-devel/Dockerfile#L76-L77 You co...
2020 Aug 20
2
Making a static build of smbclient
Hello, I'm having troubles with making a static build of smbclient. I've searched the archives, and it seems like I'm getting close, but I'm not quite there yet. I've tried: ./configure --nonshared-binary=smbclient make bin/smbclient But then when I run `ldd bin/smbclient`, I see a lot of linked libraries still. And if I copy it to a fresh docker container (to try it in a
2020 Feb 10
3
nbdkit background threads
https://github.com/libguestfs/nbdkit/blob/ecef5b16359fb5af7e7abf4fd2fb3ad5438b16be/TODO#L76 Already existing filters (readahead, cache) could be improved if filters could open a background work thread or threads which connect independently to the plugin. A proposed new filter (scan) cannot really be written at all without this capability. First of all the reason this can't be done...
2019 Jul 12
2
Introducing an Alignment object in LLVM
...ingConv.cpp#L207 7 - https://github.com/llvm/llvm-project/blob/d0307f93a7658e6d0eef1ffd0b0ed4f1506bfc13/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp#L563 8 - https://github.com/llvm/llvm-project/blob/7eeb82b58554163962d2696ce9be7d021d5b25d4/llvm/include/llvm/CodeGen/MachineConstantPool.h#L76 9 - https://github.com/llvm/llvm-project/blob/7eeb82b58554163962d2696ce9be7d021d5b25d4/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp#L2809 10 - https://github.com/llvm/llvm-project/blob/7eeb82b58554163962d2696ce9be7d021d5b25d4/llvm/include/llvm/CodeGen/MachineConstantPool.h#L96 11 - https://drive.goog...
2020 Feb 11
1
Re: nbdkit background threads
On Mon, Feb 10, 2020 at 01:52:25PM -0600, Eric Blake wrote: > On 2/10/20 1:39 PM, Richard W.M. Jones wrote: > >https://github.com/libguestfs/nbdkit/blob/ecef5b16359fb5af7e7abf4fd2fb3ad5438b16be/TODO#L76 > > > >Already existing filters (readahead, cache) could be improved if > >filters could open a background work thread or threads which connect > >independently to the plugin. A proposed new filter (scan) cannot > >really be written at all without this capability. &gt...
2012 Aug 07
9
How do I force link_to/form helpers to use the superclass name in the path instead subclass?
I want my helpers to generate paths using a superclass instead of the subclasses. Assuming I have Owner and Member that both inherit from User, rails will use the current objects class name when generating paths: Let''s say current_user is a mod: <%= link_to current_user.name, current_user %> will generate "/mod/:id". I want to force it to generate
2019 Jul 12
2
Introducing an Alignment object in LLVM
...; 7 - > https://github.com/llvm/llvm-project/blob/d0307f93a7658e6d0eef1ffd0b0ed4f1506bfc13/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp#L563 > 8 - > https://github.com/llvm/llvm-project/blob/7eeb82b58554163962d2696ce9be7d021d5b25d4/llvm/include/llvm/CodeGen/MachineConstantPool.h#L76 > 9 - > https://github.com/llvm/llvm-project/blob/7eeb82b58554163962d2696ce9be7d021d5b25d4/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp#L2809 > 10 - > https://github.com/llvm/llvm-project/blob/7eeb82b58554163962d2696ce9be7d021d5b25d4/llvm/include/llvm/CodeGen/MachineConstantPool.h#L96 &gt...
2017 Feb 08
3
Linking Linux kernel with LLD
...find where it fails. LLD linked kernel starts execution and then I came up to protected_mode_jump? function, which intention to jump to startup_64: jmpl *%eax # Jump to the 32-bit entrypoint (https://github.com/torvalds/linux/blob/5924bbecd0267d87c24110cbe2041b5075173a25/arch/x86/boot/pmjump.S#L76) (https://github.com/torvalds/linux/blob/5924bbecd0267d87c24110cbe2041b5075173a25/arch/x86/kernel/head_64.S#L48) It does not happen. Code executes right before jmpl and then fail on this call for me, so startup_64 never called. startup_64 is a part of vmlinux binary. So as you said vmlinux has tr...
2020 Aug 20
0
Making a static build of smbclient
...s. We just do 'less dyanmic' builds. I dug into this for our oss-fuzz build (Google's cloud fuzzer) and ended up with this to copy and use rpath to locate the system libraries we still link to. See: https://gitlab.com/samba-team/samba/-/blob/master/lib/fuzzing/oss-fuzz/build_samba.sh#L76 Andrew Bartlett -- Andrew Bartlett https://samba.org/~abartlet/ Authentication Developer, Samba Team https://samba.org Samba Developer, Catalyst IT https://catalyst.net.nz/services/samba
2020 Feb 10
0
Re: nbdkit background threads
On 2/10/20 1:39 PM, Richard W.M. Jones wrote: > https://github.com/libguestfs/nbdkit/blob/ecef5b16359fb5af7e7abf4fd2fb3ad5438b16be/TODO#L76 > > Already existing filters (readahead, cache) could be improved if > filters could open a background work thread or threads which connect > independently to the plugin. A proposed new filter (scan) cannot > really be written at all without this capability. > > First of all...
2020 Apr 22
5
[Bug 3152] New: #ifdef around memmem() is invalid.
...: Miscellaneous Assignee: unassigned-bugs at mindrot.org Reporter: balu.gajjala at gmail.com Different #ifdef used for memmem() declaration and definition. https://github.com/openssh/openssh-portable/blob/d6cc76176216fe3fac16cd20d148d75cb9c50876/openbsd-compat/openbsd-compat.h#L76 #if defined(HAVE_DECL_MEMMEM) && HAVE_DECL_MEMMEM == 0 void *memmem(const void *, size_t, const void *, size_t); #endif https://github.com/openssh/openssh-portable/blob/d6cc76176216fe3fac16cd20d148d75cb9c50876/openbsd-compat/memmem.c#L32 still uses #ifndef HAVE_MEMMEM. -- You are recei...
2010 May 13
1
[PATCH febootstrap] Pull in febootstrap-supermin-helper (C version) from libguestfs.
...functionality in febootstrap, cf: http://git.annexia.org/?p=libguestfs.git;a=blob;f=appliance/supermin-split.sh.in;h=44cfe21723d94c7c927dfc5f8ae27f27dc8b8462;hb=HEAD#l50 http://git.annexia.org/?p=febootstrap.git;a=blob;f=febootstrap-to-supermin.sh;h=eccf18e290261485d0b241eb5558e38a566ee0ba;hb=HEAD#l76 and: http://git.annexia.org/?p=libguestfs.git;a=blob;f=appliance/libguestfs-supermin-helper.c;h=127b5c0ebcfa41cbd7776440a8ba7bdabd1ff1c8;hb=HEAD http://git.annexia.org/?p=febootstrap.git;a=blob;f=febootstrap-supermin-helper.sh;h=cd5cf19b096130a6d975830333555039b74b66b6;hb=HEAD Since this is a ma...
2015 Aug 17
4
Aggregate load/stores
...ator::getUse 1.28% lacsap lacsap [.] llvm::SDUse::getUser Here's the LLVM IR generated: https://gist.github.com/Leporacanthicus/9b662f88e0c4a471e51a And as can be seen here -O0 produces "no passes": https://github.com/Leporacanthicus/lacsap/blob/master/lacsap.cpp#L76 ../lacsap -no-memcpy -tt longcompile.pas -O0 Time for Parse 0.502 ms Time for Analyse 0.015 ms Time for Compile 1.038 ms Time for CreateObject 48134.541 ms Time for CreateBinary 48179.720 ms Time for Compile 48187.351 ms And before someone says "but you are running a debug build", if I...
2019 Nov 29
1
Re: Continuing the split (was: Let's split up the libguestfs git repo and tarballs)
On Fri, Nov 29, 2019 at 12:09:47PM +0000, Richard W.M. Jones wrote: > So, the difficulty of git submodules aside, we have now split off > virt-v2v and virt-p2v into separate projects. > > I also yesterday split off the boot analysis tools into a repo which > is likely to be rarely used and which I'll probably not bother to > package in Fedora. >
2017 Feb 03
3
Linking Linux kernel with LLD
On Thu, Feb 2, 2017 at 12:38 AM, George Rimar <grimar at accesssoftek.com> wrote: > >As far as the setup, I would recommend setting up qemu for actually > running the LLD-linked kernel and custom bootloader etc. because then you > can have a single >script that rebuilds the bootloader and kernel and > copies the files to the VM. This reduces iteration time significantly.
2017 Apr 05
6
Very hard to reproduce bug (?) in R-devel
) On Wed, Apr 5, 2017 at 2:59 AM, Martin Maechler <maechler at stat.math.ethz.ch> wrote: > > >>>>> Winston Chang <winstonchang1 at gmail.com> > >>>>> on Tue, 4 Apr 2017 15:29:40 -0500 writes: > > > I've done some more investigation into the problem, and it is very > > difficult to pin down. What it looks like is
2015 Aug 17
5
Aggregate load/stores
I've definitely "run into this problem", and I would very much love to remove my kludges [that are incomplete, because I keep finding places where I need to modify the code-gen to "fix" the same problem - this is probably par for the course from a complete amateur compiler writer and someone that has only spent the last 14 months working (as a hobby) with LLVM]. So whilst
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list. I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without modifications. How did I try it? Created a (non-root) build environment (not a mock ) Installed the kernel.scr.rpm and did a rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log The build failed at the end: Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL Checking