Displaying 20 results from an estimated 400 matches similar to: "[LLVMdev] .debug_info section size in arm executable"
2011 Nov 09
0
[LLVMdev] .debug_info section size in arm executable
Seung-yeon Choe wrote:
> Dear all
>
> I'd wonder why executable's debug information size is bigger than gcc dwarf debug info.
>
> When I compiled ARM hello world code with -g option, the arm based assembly and executable files are bigger than gcc results significiantly.(apx. 3x)
> (source file size was only 3KB)
>
> I think that both clang and gcc use same dwarf
2011 Nov 24
2
[LLVMdev] arm neon intrinsics cross compile error on windows system
Hi,
Just to clarify, some header files are compiler specific. Stdint.h is one of them. The reason your Ubuntu stdint.h works is because, coincidentally, Clang's stdint.h uses the same layout and pre-processor built-ins as GCC.
This is an implementation detail. Do not rely upon it. You should use Clang's stdint.h.
Cheers,
James
From: Seung-yeon Choe [mailto:sychoe at gmail.com]
Sent: 24
2011 Nov 24
0
[LLVMdev] arm neon intrinsics cross compile error on windows system
Hi,
There is a little bit awkward thing.
If I need to use the newlibc printf function regardless stdint.h is
compiler specific implementation,
I should remove or block newlibc's stdint.h and the others because as you
know clang already stdint.h (glibc compatible??) header but it is not
standard library full set, right?
On the other hand, even if I want to use other toolchain's glibc
2011 Nov 24
1
[LLVMdev] arm neon intrinsics cross compile error on windows system
Hello, James Molly.
Thank you for your advices.
Now I aware that this is the problem of stdint.h. And, codesourcery
toolchain also has stdint.h header file at same place of stdio.h
Generally, Clang has "lib/clang/3.0/include" default search path.
If I added codesourcery toolchain path for stdio.h with -I option, stdint.h
has been loaded at the specified toolchain path first cuz
2011 Nov 24
0
[LLVMdev] arm neon intrinsics cross compile error on windows system
Hello,
I totally understood about this problem.
codesourcery codebench arm eabi version uses newlibc.
but, arm gnu/linux version uses glibc.
hm.. actually there is no problem. it was my mistake as james told me.
Thanks.
2011/11/24 Seung-yeon Choe <sychoe at gmail.com>
> Hello, James Molly.
>
> Thank you for your advices.
>
> Now I aware that this is the problem of
2011 Nov 23
4
[LLVMdev] arm neon intrinsics cross compile error on windows system
Dear all.
I built the LLVM 3.0 rc4 with Clang front-end in windows os env. (also with
-DLLVM_TARGETS_TO_BUILD=all option)
For arm neon intrinsics testing, I tried to compile some codes, which are
included a few neon intrinsics.
Although I got a well done bitcode on ubuntu build pc, it shows some errors
when compile the codes on windows.
Could you let me know why occurred errors? is this just a
2006 Dec 08
2
any way to make the code more efficient ?
The code bekow works so this is why I didn't include the data to
reproduce it. The loops about 500
times and each time, a zoo object with 1400 rows and 4 columns gets
created. ( the rows represent minutes so each file is one day
worth of data). Inside the loop, I keep rbinding the newly created zoo
object to the current zoo object so that it gets bigger and
bigger over time.
Eventually,
2008 Nov 18
3
WebSite Ver 2
No one has really stepped forward to push the website ver2 project
forward. So, if it is ok with everyone, I'd like to take that task on.
--
Karanbir Singh : http://www.karan.org/ : 2522219 at icq
2003 May 26
2
Problem with library
Hello.
I'm using R 1.7.0 on win98 ver2. I erased all my previous versions of R,
and install r 1.7.0. When I write "library()" I receive on a separate
pane all the lib in ver 1.7.0, and the following msg "Warning message:
library 'C:/Program Files/R/rw1051/library' contains no package in:
library()"
Where is this msg coming from?? How to remove it?
Thnx Yakov
2004 Aug 06
1
re endcoding syntatx ices2?
G'day,
doing a spot of reencoding on my 64k ogg files, trying to create a
stream for those poor sods who are still on dial up. The syntax below
works - gives me a 28k stream. Seems like the bitrate has little
effect on the reencoding. Anyone know all the commands I can use -
still no documentation for this ver2 of ices and icecast hey?
<p> <encode>
2011 Nov 23
1
[LLVMdev] arm neon intrinsics cross compile error on windows system
Hello, Anton Korobeynikov.
I just built the llvm using ms visual studio 2010 and ran the compile
command on windows default command console.
additionally, I also specified include dir of arm codesourcery latest
toolchain because of missing stdio.h and stdint.h .
Thanks and best regards,
Seung-yeon.
2011/11/23 Anton Korobeynikov <anton at korobeynikov.info>
> Hello
>
> > In
2010 Mar 11
2
press release: Attrafax t.30 and t.38 alternative now released as gpl2 + commercial license
> Zoa wrote:
>> On friday we finally released Attrafax under a GPL2 license.
>> It comes with its own set of modems and built in transparent gatewaying.
>> The solution should be quite stable as long as the line quality is ok.
>> (Some tools for measuring the line quality are included in the release,
>> as well as some fax2mail scripts).
>>
>> There is
2011 Nov 23
0
[LLVMdev] arm neon intrinsics cross compile error on windows system
Hello
> In file included from helloneon.c:4:
> d:/llvm_projects/llvm-3.0rc4/bin/../lib/clang/3.0/include\arm_neon.h:41:24:
> error: invalid vector element type 'int32_t' (aka 'long')
This looks weird, why int32_t is long? Are you using cygwin somehow?
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University
2018 Jan 30
4
Create qcow2 v3 volumes via libvirt
Hi all,
on a fully patched CentOS 7.4 x86-64, I see the following behavior:
- when creating a new volumes using vol-create-as, the resulting file is
a qcow2 version 2 (compat=0.10) file. Example:
[root@gdanti-lenovo vmimages]# virsh vol-create-as default zzz.qcow2
8589934592 --format=qcow2 --backing-vol /mnt/vmimages/centos6.img
Vol zzz.qcow2 created
[root@gdanti-lenovo vmimages]# file
2011 Nov 09
3
[LLVMdev] .debug_info section size in arm executable
On Nov 9, 2011, at 2:58 AM, Nick Lewycky wrote:
>
> For one example, for enums clang will emit the names for all of the enum
> cases. GCC only emits the ones that are used.
Is this a clang bug, or a feature?
-Chris
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2003 Oct 07
3
FW: Optimising code
>> I have a function that applies a wilcoxon test to 12 sets of about a quarter of a million pairs
> ... and let me guess: everything is significiant to an almost arbitrary
> value of \alpha?
:-) For each of quarter of a million sets, I do a wilcoxon between two pairs each containing twenty numbers...
I do this 12 times...
> > (and takes about 3 hours). I've replaced the
2006 Jul 27
1
[PATCH] add local xmms.m4
Hi folks,
here's a patch which adds an local xmms.m4 file (took it from
latest stable xmms), so an complete autoconf regeneration also
works if xmms is not installed.
cu
--
---------------------------------------------------------------------
Enrico Weigelt == metux IT service - http://www.metux.de/
---------------------------------------------------------------------
Please visit
2020 Sep 14
0
DNS problems when adding samba DC to win2008R2
On 14/09/2020 21:11, Carlos Jesus wrote:
> Hi rowland thanks for the tip.
> Even though I'm trying to add a DC not a domain member, your
> instructions are easily adapted.
oops, sorry I sent you the wrong one :-[
> I followed your procedure using Louis' repo up to the point of joining
> the domain.
> Then I issued samba-tool domain join samdom.example.com
>
2011 Jul 01
3
multiple moderated regression steps
hi,
?m studying moderated effects of percieved social support and justice world
belief on relationship between stress coping strategies and depression
level. ? haver never run this analysis before soi ? want to check my steps
whether correct or not.
first ? run regression
in step 1
centered independent variables and centered moderators
in step2
two way interactions
instep 3
three way
2001 Aug 25
0
rsync 2.4.6 on Aix 4.3.3 ERROR: out of memory in make_file
Hello,
Quick history... we have a server that catches build trees from a remote
site (several GB/day). I have a replacement server set to take over for
the older one. I initially copied all the data from the old server to the
new server (TB). The copy took better than a week. Since the initial
copy, I've been rsync'ing to keep the new server from becoming stale.
Because our build