Displaying 19 results from an estimated 19 matches for "2009q3".
2015 Mar 12
2
[LLVMdev] Customize Standard C Library Using LLVM (to support llvm backend optimization)
...; are using musl as a libc for our architecture.
> It has a much smaller code footprint than newlib or glibc.
>
I successfully cross-compile the must-libc using clang, with the
configuration:
C=clang CFLAGS=--target=arm-none-linux-gnueabi\
--sysroot=/usr/local/arm-2009q\ -I\
/usr/local/arm-2009q3/arm-none-linux-gnueabi/libc/usr/include/ LIBCC=
./configure --target=arm
But how to force clang to use musl-libc rather than its default one? I
tried
clang --target arm-none-linux-gnueabi -nostdlib -static hello.c
~/research/musl-1.1.6/lib/crt1.o ~/research/musl-1.1.6/lib/crti.o
~/research/musl-...
2015 Mar 11
4
[LLVMdev] Customize Standard C Library Using LLVM (to support llvm backend optimization)
>
> FWIW, I build baremetal newlib for arm-eabi using clang, and it works. I
>> had to patch a few of the __attribute__((naked)) functions because they
>> were using pre-UAL asm syntax, but for the most part it "just works".
>>
>
I build the baremetal newlib using arm-none-eabi-gcc as well, but after
linking with the hello world program, it failed to run on
2015 Mar 29
2
[LLVMdev] How to Cross Compile libcompiler_rt Static Library?
...ler-rt -DCMAKE_C_COMPILER=clang
-DCMAKE_CXX_COMPILER=clang++ -DLLVM_NATIVE_ARCH=ARM
-DLLVM_TARGETS_TO_BUILD=ARM -DTARGET_TRIPLE=armv-none-linux-gnueabi
-DCMAKE_CROSSCOMPILING=True". It will still build X86_64 version.
I also tried "cmake ../compiler-rt
-DCMAKE_C_COMPILER=/usr/local/arm-2009q3/bin/arm-none-linux-gnueabi-gcc
-DCMAKE_CXX_COMPILER=/usr/local/arm-2009q3/bin/arm-none-linux-gnueabi-g++
-DLLVM_NATIVE_ARCH=ARM -DLLVM_TARGETS_TO_BUILD=ARM
-DTARGET_TRIPLE=armv-none-linux-gnueabi -DCMAKE_CROSSCOMPILING=True
". the configure process generate errors:
CMake Error at cmake/conf...
2015 Mar 12
3
[LLVMdev] Customize Standard C Library Using LLVM (to support llvm backend optimization)
...codesourcery.com>:
> You need to build a sysroot from the lib and include directories in
> ~/research/musl-1.1.6 combined with the same folders from
> /usr/local/arm-2009q, then use `--sysroot` instead of the `-I`s and `-L's.
I copied everything from the lib in musl-1.1.6
to arm-2009q3/arm-none-linux-gnueabi/libc/usr/lib but there is still an
error message:
src/env/__libc_start_main.c:(.text+0x40): undefined reference to
`__aeabi_memset'
collect2: ld returned 1 exit status
it seems that I need an arm-none-linux-gcc-4.9 (current version from
arm-2009q3 is gcc-4.4) to support...
2011 Aug 15
3
desagregación temporal
Estimados usuarios de R:
Tengo que hacer una desagregación temporal de una serie anual del
producto interno bruto en trimestral.
¿Hay alguna forma de utilizar la librería en matlab de Quilis de
desagregación temporal en R?
La libreria se puede bajar de
http://www.mathworks.com/matlabcentral/fileexchange/24438-temporal-disaggregation-library
Saludos,
Sebastián.
2009 Nov 13
2
[LLVMdev] Compilation error while cross compiling LLVM for ARM - the __clear_cache issue - now the __sync_val_compare_and_swap issue
...to use GCC 4.3.3 then you have to implement the
__sync_val_compare_and_swap_4 function yourself.
Ubuntu Jaunty ARM toolchains have been patched to contains the atomic
intrinsics support in GCC 4.3.3
So to solve this issue do one of the following:
a) update your code sourcery cross compiler to arm-2009q3 that are using
GCC 4.4
b) use the Ubuntu gcc 4.3.3 provided toolchain (i use this when
compiling llvm natively on a arm machine without cross compilation)
c) implement the __sync_val_compare_and_swap_4 function and patch llvm
to enable compilation using older toolchains.
Cheers
Xerxes
2015 Mar 29
2
[LLVMdev] How to Cross Compile libcompiler_rt Static Library?
Hi,
I've cross-compiled musl-libc to arm binaries with clang. It needs
functions from static runtime library "libcompiler_rt.a". I tried to build
compile_rt outside the llvm source tree. Using command like "make
clang_linux", I can easily build "libcompiler_rt.a" for my host machine,
which is X86_64. But how can I *cross-compile* the compiler_rt runtime
2009 Nov 14
0
[LLVMdev] Compilation error while cross compiling LLVM for ARM - the __clear_cache issue - now the __sync_val_compare_and_swap issue
Hi,
As you said i downloaded arm toolchain from codesourcery(2009q3 with gcc
4.4.1 version).. if i use this toolchain i am getting the following error..
make[2]: Entering directory
`/home/prasanth/LLVM_ARM/llvm-with-armgcc441/llvm-obj/lib/Analysis'
llvm[2]: Compiling LoopPass.cpp for Release build
if arm-none-linux-gnueabi-g++
-I/home/prasanth/LLVM_ARM/llvm-wi...
2015 Mar 29
2
[LLVMdev] How to Cross Compile libcompiler_rt Static Library?
...COMPILER=clang++ -DLLVM_NATIVE_ARCH=ARM
>> -DLLVM_TARGETS_TO_BUILD=ARM -DTARGET_TRIPLE=armv-none-linux-gnueabi
>> -DCMAKE_CROSSCOMPILING=True". It will still build X86_64 version.
>>
>> I also tried "cmake ../compiler-rt
>> -DCMAKE_C_COMPILER=/usr/local/arm-2009q3/bin/arm-none-linux-gnueabi-gcc
>> -DCMAKE_CXX_COMPILER=/usr/local/arm-2009q3/bin/arm-none-linux-gnueabi-g++
>> -DLLVM_NATIVE_ARCH=ARM -DLLVM_TARGETS_TO_BUILD=ARM
>> -DTARGET_TRIPLE=armv-none-linux-gnueabi -DCMAKE_CROSSCOMPILING=True
>> ". the configure process generat...
2009 Nov 16
3
[LLVMdev] Compilation error while cross compiling LLVM for ARM - the __clear_cache issue - now the __sync_val_compare_and_swap issue - now the internal compiler error issue.
Prasanth J wrote:
> Hi,
>
> As you said i downloaded arm toolchain from codesourcery(2009q3 with
> gcc 4.4.1 version).. if i use this toolchain i am getting the
> following error..
>
> make[2]: Entering directory
> `/home/prasanth/LLVM_ARM/llvm-with-armgcc441/llvm-obj/lib/Analysis'
> llvm[2]: Compiling LoopPass.cpp for Release build
> if arm-none-linux-gnueabi-g++...
2010 Jun 03
0
[LLVMdev] Assertion when loading bitcode
...need to attach the .bc file
> that's crashing lli so someone with an ARM llvm build can try to
> reproduce your problem. You'd also need the exact lli command line
> you're using, but I see that at the bottom of your crash dump.
I have changed my compiler to Sourcery G++ Lite 2009q3-67 but i still
get the same error. Could someone with access to ARM llvm build see if
the error is reproducible . The .bc is attached and my lli command line
is " lli -march=arm twofunctions.bc"
Thanks
-------------- next part --------------
A non-text attachment was scrubbed...
Na...
2010 Jan 01
1
Chainging monthly data to daily data
Hi, I have a zoo object with monthly frequency :
library(zoo)
dat <- zooreg(rnorm(50), as.yearmon("2000-01-01"), frequency=12)
Now I want to make a zoo object with daily frequency from "dat" wherein
value for a each day for a particular month will be value of "dat" at that
particular month.
Is there any easy way to do that?
Thanks,
--
View this message in
2009 Oct 30
1
Time series temporal disaggregation
Hi,
This is a newbie question.
I would to be able to convert annual time series of flow data into quarterly data. I wonder if there is any existing R-function which permits to do it? In what package ?
I the archive, i found that some poeple speak about "tempDis" package for performing time series temporal disaggregation, but when I try to download it I can not found it in the list
2009 Mar 27
0
[LLVMdev] Connecting JITted code to gdb
On Fri, Mar 27, 2009 at 2:25 PM, Jeffrey Yasskin <jyasskin at google.com> wrote:
> On Fri, Mar 27, 2009 at 3:48 PM, Evan Cheng <evan.cheng at apple.com> wrote:
>> Run with -debug-only=jit.
>
> OT: I take it the recommended model for tools that embed LLVM is for
> them to accept all of LLVM's command line arguments on their own
> command lines?
Well, sort of...
2010 May 17
3
[LLVMdev] ARM EABI Exceptions
....ld") and
run, it breaks completely. GCC's run flawlessly.
Anyone has any idea on the status of exception handling in clang/LLVM?
DwarfException cannot be easily overwritten, and adding target specific
code to it seems wrong...
Attached is my example compiled with Codesourcery's GCC (2009q3) and
clang (2.7).
cheers,
--renato
-------------- next part --------------
A non-text attachment was scrubbed...
Name: exception-clang-example.tar.gz
Type: application/x-compressed-tar
Size: 9630 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100517/ba3d...
2009 Mar 27
2
[LLVMdev] Connecting JITted code to gdb
On Fri, Mar 27, 2009 at 3:48 PM, Evan Cheng <evan.cheng at apple.com> wrote:
> Run with -debug-only=jit.
OT: I take it the recommended model for tools that embed LLVM is for
them to accept all of LLVM's command line arguments on their own
command lines? For Python, it'd be much nicer to make this stuff
tweakable through a module at runtime, or even, for thread-safety
reasons, as
2009 Nov 16
0
[LLVMdev] Compilation error while cross compiling LLVM for ARM - the __clear_cache issue - now the __sync_val_compare_and_swap issue - now the internal compiler error issue.
...or clearing the
instruction cache call in lib/System/Memory.cpp?
Thanks and Regards,
Prasanth J
On Mon, Nov 16, 2009 at 4:12 PM, Xerxes Rånby <xerxes at zafena.se> wrote:
>
> Prasanth J wrote:
> > Hi,
> >
> > As you said i downloaded arm toolchain from codesourcery(2009q3 with
> > gcc 4.4.1 version).. if i use this toolchain i am getting the
> > following error..
> >
> > make[2]: Entering directory
> > `/home/prasanth/LLVM_ARM/llvm-with-armgcc441/llvm-obj/lib/Analysis'
> > llvm[2]: Compiling LoopPass.cpp for Release build
>...
2009 Nov 13
0
[LLVMdev] Compilation error while cross compiling LLVM for ARM - the __clear_cache issue
Hi all,
with reference to the reply below, I downloaded toolchain from codesourcery
(arm-2009q1-203-arm-none-linux-gnueabi) with gcc 4.3.3... when i compile
llvm+clang with this toolchain i am getting the following error
make[4]: Entering directory
`/home/prasanth/LLVM_ARM/llvm-with-armgcc433/llvm-obj/tools/clang/tools/c-index-test'
llvm[4]: Linking Release executable c-index-test (without
2009 Nov 09
1
[LLVMdev] Compilation error while cross compiling LLVM for ARM - the __clear_cache issue
Prasanth J skrev:
> Hi,
>
> i am a newbie to llvm architecture. i have been trying to port llvm on
> ARM target. i am using the following configuration for cross compiling
> llvm.
>
> ../llvm/configure --host=arm-linux --target=arm-linux
> --build=i686-linux --prefix=/opt/llvm-arm/ --enable-optimized
> --disable-debug \
> --disable-expensive-checks --disable-doxygen