Displaying 20 results from an estimated 400 matches similar to: "[LLVMdev] compiler-rt project PATCH"
2010 Nov 17
1
Debian package init scripts
Dearest list,
I am using dovecot with heartbeat-2 and I noticed that the init scripts
in the Debian packages from http://xi.rename-it.nl/debian/ do not
conform to the LSB standard:
http://refspecs.freestandards.org/LSB_3.1.1/LSB-Core-generic/LSB-Core-generic/iniscrptact.html
E.g. the return code for "program is not running" is not 3.
Is there is special reason for this?
Cheers Jan
--
2005 Jun 02
2
Re: Reboots -- LSB 2.1 Core Generic Section 8.5
From: Rodrigo Barbosa <rodrigob at suespammers.org>
> There is nothing wrong with using X11 at runlevel 3. The only thing
> that can't be present is a display manager (KDM, XDM, GDM etc).
That's _exactly_ what I'm talking about.
Run-level 3 starts xdm.
Several Linux distros use 2 for multi-user, 3 for multi-user w/X.
Run-level 2 as multi-user w/o networking or w/o NFS was
2007 Feb 12
1
[LLVMdev] Linux/ppc backend
Hi Jim,
I didn't use any documents, but intensively looked at gcc's output. I
think this document:
http://refspecs.freestandards.org/elf/elfspec_ppc.pdf
is the last specification of the ABI.
Cheers,
Nicolas
Jim Laskey wrote:
> Nicolas,
>
> Would you point me to the Linux/PPC ABI documents you are using so I
> can better judge what your restrictions are? These changes
2018 Dec 10
2
Compiling for baremetal ARMv4 on Ubuntu Linux
Hello again!
Tried out the small Hello World Setup, worked as intended:
root at christian-forschung-virtual-machine:/home/progs# clang -v
--target=arm-linux-gnueabihf hello.c -o hello -fuse-ld=lld
clang version 8.0.0 (https://git.llvm.org/git/clang.git/
a152c7a4b7ba8f4cb9532ead9a38a7121db43d50)
(https://git.llvm.org/git/llvm.git/
1959ce6f3e01241919968ac1911fd45660239d23)
Target:
2018 Dec 13
2
Compiling for baremetal ARMv4 on Ubuntu Linux
Hello Peter and Lists,
thanks a lot, that way it worked out! The final cmake was
cmake -G "Ninja" ../llvm/projects/compiler-rt/
-DCOMPILER_RT_BUILD_BUILTINS=ON -DCOMPILER_RT_BUILD_SANITIZERS=OFF
-DCOMPILER_RT_BUILD_XRAY=OFF -DCOMPILER_RT_BUILD_LIBFUZZER=OFF
-DCOMPILER_RT_BUILD_PROFILE=OFF
-DCMAKE_C_COMPILER=/usr/local/myclang/bin/clang
-DCMAKE_AR=/usr/local/myclang/bin/llvm-ar
2018 Dec 14
3
Compiling for baremetal ARMv4 on Ubuntu Linux
Hello again Christian,
I've posted https://reviews.llvm.org/D55709 to see if we can get the
documentation on how to cross-compile compiler-rt improved. I'll be
out of office until next year so I may be a bit slow to respond to any
follow ups.
Peter
On Thu, 13 Dec 2018 at 17:10, Peter Smith <peter.smith at linaro.org> wrote:
>
> Hello Christian,
>
> I've just
2019 Feb 04
2
Compiling for baremetal ARMv4 on Ubuntu Linux
Hello Christian,
I've put some comments inline,
On Sun, 3 Feb 2019 at 13:11, Christian Richter
<christian.richter at hsu-hh.de> wrote:
>
> Hello again,
>
> so after I successfully build the compiler-rt for armv6 I tried to
> actually use it in compiling a small helloworld for a baremetal arm
> (consisting of barehelloCLANG.c and a small io.h + io.c) , but the
>
2019 Mar 04
2
Compiling for baremetal ARMv4 on Ubuntu Linux
Hello Christian,
I'd expect that adding the library paths (-L) from gcc -v should fix
the unable to find -lc, -lm but it won't fix the
-lclang_rt.builtins-armv6m.a . To get clang_rt.builtins-armv6m.a you
will need to cross compile compiler-rt for v6m and copy it to
/usr/local/myclang/lib/clang/8.0.0/lib/baremetal . Beware that
building compiler-rt for v6m does need quite a bit of fighting
2019 Mar 11
2
Compiling for baremetal ARMv4 on Ubuntu Linux
Hello Christian,
I reran my script with a similar cmake command to yours. After the
build finished the following command from the build directory gave me:
find . -name \*builtins.a
./lib/clang/9.0.0/armv6m-none-eabi/lib/libclang_rt.builtins.a
./lib/clang/9.0.0/armv7m-none-eabi/lib/libclang_rt.builtins.a
./lib/clang/9.0.0/armv7em-none-eabi/lib/libclang_rt.builtins.a
I hope you see something like
2010 Jan 09
0
[LLVMdev] Exception Implementation Example added to Wiki
On Sat, Jan 9, 2010 at 5:54 AM, Garrison Venn <gvenn.cfe.dev at gmail.com> wrote:
> If the powers at be want this, I could easily transform the source to the LLVM coding standards, and add
> the necessary portable UNIX support--someone else would have to add non-UNIX support although the
> System library probably helps with this. However I'm guessing the LLVM release flux of the
2004 Oct 15
1
[fdo] Accessibility list at Freedesktop.org
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi!
I have been in discussion with several other accessibility projects to
work on a common API for speech synthesis and speech recognition drivers.
I suggested to discuss this on a mailing list and to found a new list at
freedesktop.org for this purpose. Since there are also a number of other
accessibility related areas where cooperation is
2010 Jan 09
2
[LLVMdev] Exception Implementation Example added to Wiki
If the powers at be want this, I could easily transform the source to the LLVM coding standards, and add
the necessary portable UNIX support--someone else would have to add non-UNIX support although the
System library probably helps with this. However I'm guessing the LLVM release flux of the exception system,
along with a lack of universal platform, dwarf JIT support might be a hinderance in
2007 Apr 02
2
[LLVMdev] Declaration of a va_list should be an intrinsic?
Hi everyone,
Currently, when declaring a va_list in llvm, one only needs to do:
%ap = alloca i8 * (Reference : llvm/docs/LangRef.html#int_varargs)
This is OK for x86 and PPC/Darwin ABI because a va_list in these architectures is
just a pointer to the stack. The va_start intrinsic just initializes where
the pointer points at in the stack. I do not know how the other backends operate,
but I
2009 Nov 19
1
init-script update for v2.0
Hi Timo,
please find attached a patch for the init script in the doc directory.
* Added LSB-compliant info block (for insserv and friends)
* Updated base_dir detection (for v2.0 config output)
Regards,
Pascal
--
The trapper recommends today: decade.0932307 at localdomain.org
-------------- next part --------------
A non-text attachment was scrubbed...
Name: dovecot-initd_LSB_header.patch
2013 Sep 06
0
[LLVMdev] CFI Directives
On 5 September 2013 19:27, Bill Wendling <wendling at apple.com> wrote:
> Hi Rafael,
>
> I've been staring at the CFI directives and have a question. Some background: I want to generate the compact unwind information using just the CFI directives. I *think* that this should be doable. The issue I'm facing right now is that I need to know how much the stack pointer was
2007 Feb 02
0
[LLVMdev] Linux/ppc backend
Nicolas,
Would you point me to the Linux/PPC ABI documents you are using so I
can better judge what your restrictions are? These changes also have
an effect on debugging and exception handling.
Cheers,
-- Jim
On 2-Feb-07, at 08:58 AM, Nicolas Geoffray wrote:
> Hi everyone,
>
> I have almost completed the implementation of a linux/ppc backend
> in llvm. There were a few
2013 Dec 20
1
[LLVMdev] spilling & restoring registers for EHReturn & return _Unwind_Reason_Code
Hi
I'm working on the XCore target and am having difficulty building libgcc.
Background:
If I use a libgcc built by llvm3.0-gcc with my current clang-llvm3.3 compiler, exceptions 'seem' to work.
Trying to rebuild libgcc however breaks exception handling - they aren't caught!
I thus assumed I needed to focus on the unwind code and particularly functions that call
2013 Apr 11
0
[LLVMdev] object file/linking is missing my exception handlers
Hi,
On 11/04/13 06:06, edA-qa mort-ora-y wrote:
> I have some exception handling which works fine using the JIT. Now I am
> producing object files and linking them, but the exception handling
> tables seem to be missing. I call _Unwind_RaiseException and get
> _URC_END_OF_STACK as a result.
you will get this if no catch clauses match (eg because there are no catch
clauses, perhaps
2009 Sep 23
2
[LLVMdev] [llvm-commits] [PATCH] BlocksRuntime updates for Linux
Clang does indeed built it with one warning.
[ 55%] Building C object
lib/CMakeFiles/CompilerRT-Common.dir/gcc_personality_v0.c.o
/export/home/edward/lab/llvm/build/compiler-rt/lib/gcc_personality_v0.c:232:36:
warning: implicit declaration of function
'__builtin_eh_return_data_regno' is invalid in C99
[-Wimplicit-function-declaration]
_Unwind_SetGR(context,
2018 Dec 07
2
Compiling for baremetal ARMv4 on Ubuntu Linux
Hello,
on the problems cross-building compiler-rt: Tried to follow
https://llvm.org/docs/HowToCrossCompileBuiltinsOnArm.html which lead to
this cmake:
cmake -G "Ninja" ../llvm/projects/compiler-rt/
-DCOMPILER_RT_BUILD_BUILTINS=ON -DCOMPILER_RT_BUILD_SANITIZERS=OFF
-DCOMPILER_RT_BUILD_XRAY=OFF -DCOMPILER_RT_BUILD_LIBFUZZER=OFF
-DCOMPILER_RT_BUILD_PROFILE=OFF