Displaying 12 results from an estimated 12 matches for "armbuildattr".
Did you mean:
armbuildattrs
2015 Sep 09
5
Building LLVM and Clang using Clang?
...0%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/APFloat.cpp.o
[ 0%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/APInt.cpp.o
[ 0%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/APSInt.cpp.o
[ 0%] Building CXX object
lib/Support/CMakeFiles/LLVMSupport.dir/ARMBuildAttrs.cpp.o
[ 0%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/ARMWinEH.cpp.o
[ 0%] Building CXX object
lib/Support/CMakeFiles/LLVMSupport.dir/Allocator.cpp.o
[ 0%] Building CXX object
lib/Support/CMakeFiles/LLVMSupport.dir/BlockFrequency.cpp.o
And while doing that I ran this and see i...
2018 Jul 26
3
Level of support for ARM LLD
On 26 July 2018 at 18:05, Ed Maste <emaste at freebsd.org> wrote:
> On 26 July 2018 at 11:08, Peter Smith <peter.smith at linaro.org> wrote:
>> On 26 July 2018 at 15:52, Ed Maste <emaste at freebsd.org> wrote:
>>> On 27 February 2018 at 09:06, Ed Maste <emaste at freebsd.org> wrote:
>>>>
>>>> A number of companies are shipping
2011 Feb 25
2
[LLVMdev] ARM ELF target and the use of VFP/NEON instructions
...for more convenience:
Index: lib/Target/ARM/ARMAsmPrinter.cpp
===================================================================
--- lib/Target/ARM/ARMAsmPrinter.cpp (revision 123053)
+++ lib/Target/ARM/ARMAsmPrinter.cpp (working copy)
@@ -458,7 +458,13 @@
AttrEmitter->EmitAttribute(ARMBuildAttrs::THUMB_ISA_use, 1);
}
- // FIXME: Emit FPU type
+ if (Subtarget->hasNEON())
+ OutStreamer.EmitRawText(StringRef("\t.fpu neon"));
+ else if (Subtarget->hasVFP3())
+ OutStreamer.EmitRawText(StringRef("\t.fpu vfpv3"));
+ else if (Subtarget->hasVFP2())
+...
2011 Feb 25
0
[LLVMdev] ARM ELF target and the use of VFP/NEON instructions
On Fri, Feb 25, 2011 at 12:16 PM, Siarhei Siamashka
<siarhei.siamashka at gmail.com> wrote:
> On Thursday 03 February 2011 14:14:28 Renato Golin wrote:
>> On 3 February 2011 10:25, Siarhei Siamashka <siarhei.siamashka at gmail.com>
> wrote:
>> > I have submitted a bug some time ago to LLVM bugtracker:
>> > http://llvm.org/bugs/show_bug.cgi?id=8931
>>
2011 Feb 25
2
[LLVMdev] ARM ELF target and the use of VFP/NEON instructions
On Thursday 03 February 2011 14:14:28 Renato Golin wrote:
> On 3 February 2011 10:25, Siarhei Siamashka <siarhei.siamashka at gmail.com>
wrote:
> > I have submitted a bug some time ago to LLVM bugtracker:
> > http://llvm.org/bugs/show_bug.cgi?id=8931
>
> Hi Siarhei,
>
> This is a really silly bug with a simple fix.
>
> We have a similar patch here
2016 Jan 04
4
Diff to add ARMv6L to Target parser
>> Going back through SVN history, I cannot find any evidence that ARMv6L ever existed.
>
> Oh, my bad!! I was thinking of ARMv7l... :/
>
> Nevertheless, I'll leave you guys to review this one, as I lost touch with the parser a while ago.
Ah, I see: ARMv7L is now an alias for ARMv7A.
So, if William has to add support for ARMv6L, I'd suggest he adds it as an alias, and
2017 Jan 25
2
LLVM 3.9.1 build race?
...ld/NATIVE/lib/Support && /usr/bin/cmake -E cmake_link_script CMakeFiles/LLVMSupport.dir/link.txt --verbose=1
/usr/bin/ar qc ../libLLVMSupport.a CMakeFiles/LLVMSupport.dir/APFloat.cpp.o CMakeFiles/LLVMSupport.dir/APInt.cpp.o CMakeFiles/LLVMSupport.dir/APSInt.cpp.o CMakeFiles/LLVMSupport.dir/ARMBuildAttrs.cpp.o CMakeFiles/LLVMSupport.dir/ARMWinEH.cpp.o CMakeFiles/LLVMSupport.dir/Allocator.cpp.o CMakeFiles/LLVMSupport.dir/BlockFrequency.cpp.o CMakeFiles/LLVMSupport.dir/BranchProbability.cpp.o CMakeFiles/LLVMSupport.dir/CachePruning.cpp.o CMakeFiles/LLVMSupport.dir/circular_raw_ostream.cpp.o CMakeFil...
2015 Feb 12
4
[LLVMdev] Building clang on Raspberry Pi2
The raspberry Pi2 is an armv7a chip (Cortex-A7), the first stage builds
fine with the native g++ (if not a little slowly at 10+ hours), but it
crashes at some point with this command line:
Program arguments:
/home/ben/development/llvm/3.6.0/rc2/Phase2/Release/llvmCore-3.6.0-rc2.install/bin/clang
-cc1 -triple armv7-unknown-linux-gnueabihf -emit-obj -disable-free
-disable-llvm-verifier
2009 May 25
0
[LLVMdev] Building LLVM with cmake on FreeBSD
Paul Melis wrote:
> Hi,
>
> Óscar Fuentes wrote:
>> Chuck Robey <chuckr at telenix.org> writes:
>>
>>
>>>> Just checked that the makefiles generated by cmake work with `make' on
>>>> FreeBSD 7.2 x86. The build fails while building `opt' because libdl is
>>>> missing.
>>>>
>>> They
2009 May 24
3
[LLVMdev] Building LLVM with cmake on FreeBSD
Hi,
Óscar Fuentes wrote:
> Chuck Robey <chuckr at telenix.org> writes:
>
>
>>> Just checked that the makefiles generated by cmake work with `make' on
>>> FreeBSD 7.2 x86. The build fails while building `opt' because libdl is
>>> missing.
>>>
>> They absolutely do work, even on FreeBSD-current( I run that here),
>>
2009 May 25
2
[LLVMdev] Building LLVM with cmake on FreeBSD
...d makefiles:
23:15|melis at juggle2:~/c/llvm-svn> svn up
U include/llvm/Analysis/ScalarEvolution.h
U tools/bugpoint/CrashDebugger.cpp
U lib/Analysis/ScalarEvolution.cpp
U lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
U lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
U lib/Target/ARM/ARMBuildAttrs.h
U lib/Target/X86/README.txt
U lib/Transforms/Scalar/IndVarSimplify.cpp
Updated to revision 72399.
23:15|melis at juggle2:~/c/llvm-svn> cd ../llvm-svn-build/
23:16|melis at juggle2:~/c/llvm-svn-build> ccmake .
# configure, generate
23:16|melis at juggle2:~/c/llvm-svn-build> gmake -...
2015 Jul 29
1
[LLVMdev] Error when i am using command make -j4 command in cygwin to compile safecode
...LLVMBuild project information.
make[1]: Entering directory '/home/NIKHILREDDY/WORK/LLVM_OBJ/lib/Support'
llvm[1]: Compiling APFloat.cpp for Release+Asserts build
llvm[1]: Compiling APInt.cpp for Release+Asserts build
llvm[1]: Compiling APSInt.cpp for Release+Asserts build
llvm[1]: Compiling ARMBuildAttrs.cpp for Release+Asserts build
llvm[1]: Compiling ARMWinEH.cpp for Release+Asserts build
llvm[1]: Compiling Allocator.cpp for Release+Asserts build
llvm[1]: Compiling Atomic.cpp for Release+Asserts build
llvm[1]: Compiling BlockFrequency.cpp for Release+Asserts build
llvm[1]: Compiling BranchProbab...