Displaying 20 results from an estimated 60 matches for "sourcery".
Did you mean:
sorcery
2011 Jul 11
3
[LLVMdev] Cross-compile to ARM using Code Sourcery Lite Toolchain
Hello
I am new to LLVM and would like to cross-compile LLVM 2.9 on x86
(Ubuntu) to ARM using Code Sourcery LIte toolchain for ARM EABI
(2011.03-41).
This is the command I used to configure:
./configure --build=i686-pc-linux-gnu --host=arm-none-linux-gnueabi
--target=arm-none-linux-gnueabi
followed by:
make -C llvm.2.9 ENABLE_OPTIMIZED=0
I encountered the following errors:
configure:error: Already con...
2011 Jul 12
0
[LLVMdev] Cross-compile to ARM using Code Sourcery Lite Toolchain
...used that recipe before with good results.
>>
>> -Jim
>>
>> On Jul 10, 2011, at 10:59 PM, Whee Cheng Ong wrote:
>>
>>> Hello
>>>
>>> I am new to LLVM and would like to cross-compile LLVM 2.9 on x86
>>> (Ubuntu) to ARM using Code Sourcery LIte toolchain for ARM EABI
>>> (2011.03-41).
>>>
>>> This is the command I used to configure:
>>> ./configure --build=i686-pc-linux-gnu --host=arm-none-linux-gnueabi
>>> --target=arm-none-linux-gnueabi
>>>
>>> followed by:
>>&g...
2012 Jul 18
2
[LLVMdev] Setting up a cross-compiler for cortex-m3
...39;t figure out how to build for cortex-m3
>
> clang -march=armv7-m -mfloat-abi=soft <something missing?> testReference.cpp -c
-march should have done the trick.
You can also try -mcpu=cortex-m3,
or try -ccc-host-triple armv7m-none-gnueabi (or -eabi),
and possibly -ccc-gcc-name code sourcery's gcc,
or possibly --sysroot=code sourcery/libc
--
cheers,
--renato
http://systemcall.org/
2016 Nov 04
2
pjsip transports from database.
...settings in the database
are not loaded.
When loading the transport form the .conf file it works as expected and
does not do an auto binding, but uses what is in the .conf
Is there a way to have asterisk pjsip hold the default binding override
until after it has checked the database when sourcery .conf configures a
transport location other then pjsip.conf?
Thanks
Bryant
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20161104/fd3dede6/attachment.html>
2020 May 26
2
Realtime PJSIP RTT
...ems the object is called "contact_status", and I've
tried [2] in sorcery.conf, But I'm not seeing any output or seeing anything
else to follow with GoogleFu.
[1], A mailinglist crawler, i know:
https://asteriskfaqs.org/2015/10/29/asterisk-users/pjsip-and-rtt-in-realtime.html
[2], sourcery.conf
[res_pjsip]
******stuff***********
contact_status=realtime,ps_contact_status (Which I've also defined in
extconfig)
*Nick Olsen*
Network Engineer
Office: 321-408-5000 x103
Mobile: 321-794-0763
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists...
2014 Feb 04
3
[LLVMdev] [lld] Allow atoms with empty name in the RefNameBuilder::buildDuplicateNameMap()
Hi,
Method RefNameBuilder::buildDuplicateNameMap() has an assert which
blocks atoms with empty name. In general it looks reasonable but some
toolchains (for example Sourcery CodeBench in both MIPS and ARM
editions) can generate an object file contains absolute STT_FILE
symbols with empty name. Moreover crt1.o object file from this
toolchain has such symbol. I do not know is it a feature or bug but
that behavior exists for a long time.
Here is the reproduction script:...
2010 Jun 01
2
[LLVMdev] Assertion when loading bitcode
>>>>> I am using GCC 4.3.2 ( Debian 4.3.2-1.1) on x86. I will try out a different compiler.
I tried out Sourcery G++ Lite 2009q1-203 (GCC 4.3.3). I still can't get lli to run. This time the error is like this:
0 lli 0x00651128
1 lli 0x00651960
2 libc.so.6 0x40212600 __default_sa_restorer_v1 + 0
3 lli 0x00282ef0
4 lli 0x00283cec llvm::SelectionDAG::LegalizeTypes() + 608
5 lli...
2005 Mar 22
2
mkstemp fails but data still transferred
...rsync can't create the temporary
file shouldn't it just bail ?
Any info would be greatfully received.
Cheers - Steve
========================================================================
He didn't administer a reign of terror, just the occasional light shower.
- Terry Pratchett, Sourcery
2012 Feb 24
2
[LLVMdev] Generate Executable to Mips
You will need to install a cross compiler.
I think you can find one somewhere in this link:
https://sourcery.mentor.com/GNUToolchain/
Once you have a cross compiler, this should do what you want (if you
want little-endian code):
clang -target mipsel-unknown-linux -ccc-clang-archs mipsel -O3
hello.c -o hello.bc -emit-llvm
llc -march=mipsel hello.bc -o hello.s
mips-linux-gnu-gcc hello.s -o hello -mips32...
2010 Jul 05
2
[LLVMdev] Cross compiling llvm with arm toolchain
Hello all,
I was hoping someone may know a "good" version of the arm toolchain when
cross compiling llvm and clang for ARM. I've tried arm-2008q3-72,
arm-2009 and arm-2010q1-202 from code-sourcery with little success -
arm2010q1 fails to compile, arm-2009 take an age to link and arm-2008q3
seems to work but only when compiled with -O0. Does anyone have any
advice on the matter?
Thanks for your help,
Jon
2012 Jul 18
0
[LLVMdev] Setting up a cross-compiler for cortex-m3
Hi there,
I'm trying to switch from GCC to llvm (clang++) for cross-compiling
a firmware of mine for a stm32 (ARM cortex-m3).
After looking in the documentation and a bit of googling here is what
I did (in case someone else in the future is having the same problem)
cd llvm
git clone http://llvm.org/git/llvm.git
cd llvm/tools
git clone http://llvm.org/git/clang.git
cd llvm/projects
git
2012 Jul 18
0
[LLVMdev] Setting up a cross-compiler for cortex-m3
...arning: argument unused during compilation: '-mcpu=cortex-m3'
$ clang -march=armv7-m -mfloat-abi=soft -ccc-host-triple
armv7m-none-gnueabi testReference.cpp -c
fatal error: error in backend: CPU: 'cortex-m3' does not support ARM
mode execution!
> and possibly -ccc-gcc-name code sourcery's gcc,
>
> or possibly --sysroot=code sourcery/libc
I guess those would be used for the linking part?
Anyway thanks for your rapid response.
S.
2006 Jan 23
0
TeensyWeb 0.2.0
...requires rails, bluecloth, syntax be installed, all of which one can get
install from gems or otherwise. In order to use subversion and graphwiz
you must have those installed and the commands accessible from the path.
It''s under a liberal license and...
It can be downloaded at:
ftp://sourcery.dyndns.org/pub/ruby/teensyweb.tar.gz
The subversion repository may be accessed at:
http://sourcery.dyndns.org/svn/teensyweb
A live server and forums for TeensyWeb reside at:
http://teensymud.kicks-ass.org/forum
Improvements, patches and what not gratefully accepted.
--
J. Lambert
2006 May 22
1
exten => *0. not possible
...n I just change that value to something else like *999999999 or even
totally remove the code so I can use exten => _*0. in my dialplan?
I'd also appreciate some guidance how to go about removing all the
hardcoded US service codes from chan_zap.c so those values become
available for dialplan sourcery.
Thanks and regards,
Patrick
2014 Aug 30
1
help compiling samba
I'm compiling samba-3.6.22 for android with the sourcery arm-2010q1
compiler. The compile itself goes fine, but when I copy smbd to my device
it's not recognized as a binary. I get the error
sh: ./smbd: No such file or directory
file under linux tells me:
smbd: ELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV),
dynamically linked (uses s...
2014 Oct 13
1
static compile
Grr why is this so hard? Compiling samba-3.6.24 for android using the
sourcery toolchain. Dropbear and busybox went w/o a hitch. I've googled the
hell out of this, nothing I've found has helped.
Here's my config:
./configure --without-krb5 \
--without-ldap \
--without-ads \
--disable-cups \
--enable-swat=no \
--enable-static=yes \
--disable-shared \
--with-winbi...
2012 Jul 18
2
[LLVMdev] Setting up a cross-compiler for cortex-m3
Hi there,
I'm trying to switch from GCC to llvm (clang++) for cross-compiling
a firmware of mine for a stm32 (ARM cortex-m3).
After looking in the documentation and a bit of googling here is what
I did (in case someone else in the future is having the same problem)
cd llvm
git clone http://llvm.org/git/llvm.git
cd llvm/tools
git clone http://llvm.org/git/clang.git
cd llvm/projects
git
2012 Feb 28
3
[LLVMdev] Generate Executable to Mips
...hanks Akira,
> it worked!
>
> On Thu, Feb 23, 2012 at 10:01 PM, Akira Hatanaka <ahatanak at gmail.com
> <mailto:ahatanak at gmail.com>> wrote:
>
> You will need to install a cross compiler.
> I think you can find one somewhere in this link:
> https://sourcery.mentor.com/GNUToolchain/
>
> Once you have a cross compiler, this should do what you want (if you
> want little-endian code):
>
> clang -target mipsel-unknown-linux -ccc-clang-archs mipsel -O3
> hello.c -o hello.bc -emit-llvm
> llc -march=mipsel hello.bc -...
2012 Feb 27
0
[LLVMdev] Generate Executable to Mips
Thanks Akira,
it worked!
On Thu, Feb 23, 2012 at 10:01 PM, Akira Hatanaka <ahatanak at gmail.com> wrote:
> You will need to install a cross compiler.
> I think you can find one somewhere in this link:
> https://sourcery.mentor.com/GNUToolchain/
>
> Once you have a cross compiler, this should do what you want (if you
> want little-endian code):
>
> clang -target mipsel-unknown-linux -ccc-clang-archs mipsel -O3
> hello.c -o hello.bc -emit-llvm
> llc -march=mipsel hello.bc -o hello.s
> mips-...
2014 Feb 05
2
[LLVMdev] [lld] Allow atoms with empty name in the RefNameBuilder::buildDuplicateNameMap()
...ent in sections?
[...]
> On Feb 4, 2014, at 2:19 PM, Simon Atanasyan <simon at atanasyan.com> wrote:
>> Method RefNameBuilder::buildDuplicateNameMap() has an assert which
>> blocks atoms with empty name. In general it looks reasonable but some
>> toolchains (for example Sourcery CodeBench in both MIPS and ARM
>> editions) can generate an object file contains absolute STT_FILE
>> symbols with empty name. Moreover crt1.o object file from this
>> toolchain has such symbol. I do not know is it a feature or bug but
>> that behavior exists for a long time...