similar to: android sdk on centos7 64-bit.

Displaying 20 results from an estimated 3000 matches similar to: "android sdk on centos7 64-bit."

2015 Sep 21
2
android sdk on centos7 64-bit.
[root at centos7 Packages]# yum install /lib/ld-linux.so.2 Loaded plugins: fastestmirror, langpacks, product-id, subscription-manager This system is not registered with Subscription Management. You can use subscription-manager to register. epel/x86_64/metalink | 12 kB 00:00:00 ftp_repo | 3.6 kB 00:00:00 Loading mirror speeds from cached hostfile * epel: ftp.cse.buffalo.edu No package
2015 Sep 21
0
android sdk on centos7 64-bit.
On 09/21/2015 08:16 AM, Jason Welsh wrote: > -bash: ./adb: /lib/ld-linux.so.2: bad ELF interpreter: No such file or > directory > whats the right way to isntall the needed 32bit libs? yum install /lib/ld-linux.so.2
2015 Sep 21
0
android sdk on centos7 64-bit.
you need to use yum's "whatprovides" facility to find the package that has the ld-linux.so.2 library. ------------ Original Message ------------ > Date: Monday, September 21, 2015 12:48:22 -0400 > From: Jason Welsh <jason.welsh at mercurygate.com> > > [root at centos7 Packages]# yum install /lib/ld-linux.so.2 > Loaded plugins: fastestmirror, langpacks,
2015 Sep 21
4
android sdk on centos7 64-bit.
yeah, that still doesnt work.. [jason at centos7 platform-tools]$ yum whatprovides /lib/ld-linux.so.2 Loaded plugins: fastestmirror, langpacks, product-id, subscription-manager Determining fastest mirrors * epel: archive.linux.duke.edu No matches found [jason at centos7 platform-tools]$ yum whatprovides ld-linux.so.2 Loaded plugins: fastestmirror, langpacks, product-id, subscription-manager
2013 Oct 30
2
[LLVMdev] Symbolized ASan output on Android
If running ASan on the host architecture, we can symbolize output with: export LLVM_SYMBOLIZER_PATH=`which llvm-symbolizer` ./myInstrumentedProgram but on Android symbolizing is more complex. The bash script below is a "hello world" for symbolizing ASan output on Android. Is there a simpler way to do this? # Execute the test and save its output adb push
2013 Oct 31
0
[LLVMdev] Symbolized ASan output on Android
On Wed, Oct 30, 2013 at 2:08 PM, Greg Fitzgerald <garious at gmail.com> wrote: > If running ASan on the host architecture, we can symbolize output with: > > export LLVM_SYMBOLIZER_PATH=`which llvm-symbolizer` > ./myInstrumentedProgram > > but on Android symbolizing is more complex. The bash script below is > a "hello world" for symbolizing ASan output
2013 Oct 31
1
[LLVMdev] Symbolized ASan output on Android
Thanks for letting me know that this is in the works. This is something that would make running ASan (and all other sanitizers I assume) quite a bit more appealing on Android. If there's anything I can do to help, please let me know. If you'd like to discuss in person, I'll be at the Developers' Meeting next week. -Greg On Thu, Oct 31, 2013 at 1:58 PM, Alexey Samsonov
2014 Apr 17
3
[LLVMdev] Building sanitizers for Android
> Does %run support ssh-based testing? Yes, %run is configured by the user. I configure it to call a shell script that calls qemu-arm. It could just as easily ssh or "adb push && adb shell". -Greg On Wed, Apr 16, 2014 at 11:44 PM, Yury Gribov <y.gribov at samsung.com> wrote: > Greg, > > >> Clever, but I hope we can try to avoid the symlink hackery.
2013 Feb 11
1
Request help about developing android apps on CentOS
Hi there Firstly I must claim that this is the first time I using a mailing list and I am not familiar with the rules here. As well I am not so good at English too. So here's my apologizes if I'm not able to claim the problem clearly. I'm now using CentOS 6.3 with kernel 2.6.32-279.19.1.el668. Recently I wanna transfer my work from WIndows 8 to Linux. One of my hobbies is developing
2015 Sep 21
2
android sdk on centos7 64-bit.
you are correct sir.. something is screwed up! I remember running into a problem with the base repo enabled and swept it under the rug by disabling it for the moment and then forgot all about disabling it.. So when I enable the base repo, and run yum with debug flag, I see the following: Setting up Package Sacks http://mirror.centos.org/centos/%24releasever/os/x86_64/repodata/repomd.xml:
2013 Jun 21
0
[LLVMdev] ASan for Android Applications
You are citing the "Android platform workflow" section, which is about sanitizing components of the Android system itself. For NDK apps, see "Android NDK workflow" in the same document. You need -eng build because preloading libraries into dalvik vm is not allowed in user builds. JellyBean includes several bugfixes in the dynamic loader that asan needs. Was there any useful
2009 Jun 02
2
[LLVMdev] LLVM-gcc for Ada
I'm having problems building llvm-gcc for Ada, which may or may not be similar to the trouble Andre was having recently. I'm trying to build it on Fedora 10 (32-bit), using the instructions on the web site. The make terminates with a gnatbind error: gcc -c -g -O2 -gnatpg -gnata -I- -I. -Iada -I../../llvm-gcc-4.2/gcc/ada ../../llvm-gcc-4.2/gcc/ada/gnat1drv.adb -o ada/gnat1drv.o
2009 Jun 02
0
[LLVMdev] LLVM-gcc for Ada
Hi Eric, > I'm having problems building llvm-gcc for Ada, which may or may not be > similar to the trouble Andre was having recently. I'm trying to build > it on Fedora 10 (32-bit), using the instructions on the web site. The > make terminates with a gnatbind error: > > gcc -c -g -O2 -gnatpg -gnata -I- -I. -Iada > -I../../llvm-gcc-4.2/gcc/ada
2013 Jun 04
2
[LLVMdev] Address Sanitizer on Android
I have simple standalone ASan examples working on Android, and now I'd like to try using ASan with the Android build system. I'm building the release_33 branch of llvm+clang+compiler-rt with CMake. To test, I'm looking at libjpg, because with just a small change its Android.mk it compiles in a few seconds and without needing any additional dependencies. When I run 'djpeg' on
2010 Feb 07
0
Somewhat off topic: Building Android on CentOS 5.4
I asked this question on android-platform at googlegroups.com but never received a response. I suspect most (if not all) people compiling the Android platform are using some version of Ubuntu ... hence the lack of response. I would not normally cross post but am hopeful that another CentOS 5.4 user (not on the android-platform forum) might have successfully built the Android platform. I would
2013 Jun 04
0
[LLVMdev] Address Sanitizer on Android
> When I run 'djpeg' on JellyBean, ASan reports the error message below. > > ==28210==Shadow memory range interleaves with an existing memory > mapping. ASan cannot proceed correctly. ABORTING. Got figured out. I needed to use TARGET_LDFLAGS. LOCAL_LDFLAGS seems to be ignored in my clang build. LOCAL_CFLAGS += -fsanitize=address TARGET_LDFLAGS +=-fsanitize=address -target
2008 Dec 16
5
Installing Asterisk v1.6 on Ubuntu Intrepid?
Hi all, I am trying to isntall the v1.6 version of Asterisk on my Intrepid system, but I get an error after I have typed make: [CC] manager.c -> manager.o manager.c: In function ?action_getvar?: manager.c:1732: error: ?SENTINEL? undeclared (first use in this function) manager.c:1732: error: (Each undeclared identifier is reported only once manager.c:1732: error: for each function it appears
2015 Sep 21
0
android sdk on centos7 64-bit.
On Mon, 21 Sep 2015 13:03:58 -0400 Jason Welsh wrote: > This system is not registered with Subscription Management. You can use > subscription-manager to register. You either aren't using Centos, or you have something really screwed up with your yum repos. -- MELVILLE THEATRE ~ Real D 3D Digital Cinema ~ www.melvilletheatre.com
2013 Jun 21
1
[LLVMdev] ASan for Android Applications
Evgeniy, thanks for your help. > You need -eng build because preloading libraries into dalvik vm is not > allowed in user builds. JellyBean includes several bugfixes in the > dynamic loader that asan needs. Do you have the sha1 hashes for any of those patches? I might be able to track down a build that includes them. > Was there any useful output in adb logcat when your program
2013 Jun 21
3
[LLVMdev] ASan for Android Applications
From: http://address-sanitizer.googlecode.com/svn-history/r1624/wiki/Android.wiki > AddressSanitizer is fully supported in AOSP starting with JellyBean release. To run > applications built with ASan you'll need an -eng build of Android. > > To build any part of Android system with ASan, add > LOCAL_ADDRESS_SANITIZER:=true to the appropriate Android.mk. I don't see that