Displaying 6 results from an estimated 6 matches for "release_500".
Did you mean:
release_400
2018 Mar 15
0
Success : Ubuntu 17.10 x86_64 on LLVM/clang-built kernel with LLVM/clang-built Nvidia 390.25 driver
...ed. I got the shell
and busyboxutilities were working and so on.
*On host Ubuntu 17.10 x86_64 :*
Code:
*exp at exp:~$ *
*exp at exp:~$ strings -a defconfig-linux-4.15.7/linux-4.15.7/vmlinux | grep
"clang version" | head -1*
*Linux version 4.15.7 (exp at exp) (clang version 5.0.0-3
(tags/RELEASE_500/final)) #1 SMP Fri Mar 2 21:15:24 PST 2018*
*exp at exp:~$ *
*exp at exp:~$ lsb_release -a*
*No LSB modules are available.*
*Distributor ID: Ubuntu*
*Description: Ubuntu 17.10*
*Release: 17.10*
*Codename: artful*
*exp at exp:~$ clang -v*
*clang version 5.0.0-3 (tags/RELEASE_500/final)*
*T...
2018 Apr 08
0
Success : clang/LLVM-built host kernel and clang-built VMware kernel modules for VMware Player 14.1.1 on host Ubuntu 17.10 x86_64
...nd verifying them
that thay are correctly loaded(lsmod, etc), I reran "vmplayer" command - it
again failed with the same "segfault" as shown above.
Code:
exp at exp:~$
exp at exp:~$
exp at exp:~$ cat /proc/version
Linux version 4.16.0 (exp at exp) (clang version 5.0.0-3
(tags/RELEASE_500/final)) #4 SMP Thu Apr 5 02:12:22 PDT 2018
exp at exp:~$
exp at exp:~$
exp at exp:~$
exp at exp:~$
exp at exp:~$ lsmod | grep "vmnet\|vmmon"
vmnet 53248 13
vmmon 90112 0
exp at exp:~$
exp at exp:~$
exp at exp:~$
exp at exp:~$ vmplayer --version
.
....
2017 Oct 31
3
Cross compiling for Baremetal ARM without using GCC
...-o a.o a.c
"clang+llvm-5.0.0-linux-x86_64-ubuntu16.04/bin"/clang -static --target=arm-none-eabi -mcpu=cortex-m0 -c -o reset.o reset.c
"clang+llvm-5.0.0-linux-x86_64-ubuntu16.04/bin"/clang -v -static --target=armv6m-none-eabi -o main main.o a.o reset.o
clang version 5.0.0 (tags/RELEASE_500/final)
Target: armv6m-none--eabi
Thread model: single
InstalledDir: clang+llvm-5.0.0-linux-x86_64-ubuntu16.04/bin
"clang+llvm-5.0.0-linux-x86_64-ubuntu16.04/bin/ld.lld" main.o a.o reset.o -Bstatic -Lclang+llvm-5.0.0-linux-x86_64-ubuntu16.04/lib/clang/5.0.0/lib/baremetal -lc -lm -lclang_rt...
2018 Aug 03
3
[7.0.0 Release] The release branch is open; trunk is now 8.0.0
On Fri, 3 Aug 2018 at 11:42, Martin J. O'Riordan via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
> A few months ago I switched from using SVN for the LLVM project to using the GIT mono-repo, but I am still not particularly good at using GIT. How can I use the GIT command-line interface to select to the exact same set of sources used for the v7.0.0 branch,
Do you mean the commit
2017 Sep 29
2
Trouble when suppressing a portion of fast-math-transformations
...is that when disabling other sub-fast-math aspects
(unrelated to reassociation), the transformation is suppressed, when it should
not be. Here is the new behavior with that same set of sub-fast-math aspects
individually disabled:
$ new/bin/clang --version | grep version
clang version 5.0.0 (tags/RELEASE_500/final)
$ new/bin/clang -c -O2 -o x.o assoc.cpp
$ llvm-objdump -d x.o | grep "^ .*: "
0: f3 0f 58 c1 addss %xmm1, %xmm0
4: f3 0f 5c c1 subss %xmm1, %xmm0
8: c3 retq
$ new/bin/clang -c -O2 -ffast-math -o x.o assoc.cpp
$ llvm-objdump...
2017 Sep 29
0
Trouble when suppressing a portion of fast-math-transformations
...(unrelated to reassociation), the transformation is suppressed, when
> it should
>
> not be. Here is the new behavior with that same set of sub-fast-math
> aspects
>
> individually disabled:
>
> $ new/bin/clang --version | grep version
>
> clang version 5.0.0 (tags/RELEASE_500/final)
>
> $ new/bin/clang -c -O2 -o x.o assoc.cpp
>
> $ llvm-objdump -d x.o | grep "^ .*: "
>
> 0: f3 0f 58 c1 addss %xmm1, %xmm0
>
> 4: f3 0f 5c c1 subss %xmm1, %xmm0
>
> 8: c3 retq
>
> $ new/bin/clang -c -O2 -ffa...