Displaying 20 results from an estimated 10000 matches similar to: "looking for android.mk sample file of opus"
2012 Nov 14
0
[LLVMdev] Clang now included in Android NDK r8c
cc +andrewhsieh +loganchien
On Tue, Nov 13, 2012 at 11:21 PM, Joe Abbey <jabbey at arxan.com> wrote:
> Hats off to the Android NDK team!
>
>
Thanks for including me here, but I'd like to clarify that this is all from
the really hard work of Andrew Hsieh and Logan Chien, and a few other
Android engineers.
(I'm actually not working on Android anymore, Andrew and Logan have
2013 Jul 18
2
Help building OPUS library using FIXED_POINT option
Hi,
We are rebasing our audio compression subsystem using OPUS rather than SPEEX. The platform is Android but this piece is written in C code: we need to support armv5/armv7/x86 architectures.... and we use the released opus-1.1beta package from here<http://downloads.xiph.org/releases/opus/opus-1.1-beta.tar.gz>.
A lot of our OPUS build system + code to drive the audio compression has been
2012 Nov 13
3
[LLVMdev] Clang now included in Android NDK r8c
Hats off to the Android NDK team!
http://developer.android.com/tools/sdk/ndk/index.html
Important changes:
* Added the Clang 3.1 compiler to the NDK. The GNU Compiler Collection (GCC) 4.6 is still the default, so you must explicitly enable the Clang compiler option as follows:
* For ndk-build, export NDK_TOOLCHAIN_VERSION=clang3.1 or add this environment variable setting
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
2013 Feb 01
0
[LLVMdev] Clang now included in Android NDK r8c
Yes, llvm-config. Thanks for the pointer to the build script - that's what
I was looking for.
-Greg
On Thu, Jan 31, 2013 at 5:24 PM, Andrew Hsieh <andrewhsieh at google.com>wrote:
> You mean llvm-config? It was deleted after the build. You can modify our
> build script build-llvm.sh to get it back.
> Clang/llvm-3.2 will be available in the next NDK release. There is no
2013 Feb 01
0
[LLVMdev] Clang now included in Android NDK r8c
Hi LLVM Android NDK developers,
I was curious how clang was built for this release, but didn't find the
llvm-setup executable in the NDK. Can you share how your build was
configured here?
And I see the Chromium build distributes a separate version of clang that
looks to be somewhere beyond the 3.2 release. Has there been any talk of
both Android and Chromium sharing the same clang? Or is
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
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
2015 Jul 09
1
[PATCH] cpu.c and Android
According to https://developer.android.com/ndk/guides/abis.html#x86
Android always support SSE, so there's no need to test SSE OS support.
Why both __ANDROID__ and ANDROID are tested:
http://stackoverflow.com/questions/15328751/android-macro-suddenly-not-defined
http://stackoverflow.com/questions/6374523/how-to-detect-compilation-by-android-ndk-in-a-c-c-file
2009 Oct 11
1
R on Google Android
Hi.
As a follow-up on [1], I'd like to raise the question of whether it's
practically possible to compile R to the Google Android mobile
platform?
The best way would probably be to use the Native Developer Kit [2],
NDK, and in that way get a library. This could then be interfaced to
by a Java-program.
I know that several questions have been raised against the idea, e.g.
with the input
2013 Nov 26
0
[LLVMdev] Android, llvm-ar and setLastModificationAndAccessTime
This is only available for apps that target API level 19 and up. On 18 and
lower, the futimens() function won't be available via libc.so. You will
need to target API 19 (KitKat) in order to actually use it. If I do an "nm
-D prebuilts/ndk/9/platforms/android-19/arch-arm/usr/lib/libc.so", I can
see futimens() is present. On the others, it is definitely missing.
Steve
On Mon, Nov
2013 Jul 18
0
Help building OPUS library using FIXED_POINT option
On 13-07-18 8:12 AM, Dubois-Rande, Antoine wrote:
> C:/android/android-ndk-r8e/toolchains/arm-linux-androideabi-4.6/prebuilt/windows/bin/../lib/gcc/arm-linux-androideabi/4.6/../../../../arm-linux-androideabi/bin/ld.exe: ./obj/local/armeabi/lib0.a(analysis.o): in function
> run_analysis:jni/src/libopus/src/analysis.c:636: error: undefined reference to
> 'optimize_framesize'
2013 Jul 26
0
[LLVMdev] Botan and Android
Hi Jack,
I'm almost there with Android..... I've actually got the static and
dynamic libraries built. I'm choking on the test suite.
Do you want to take a shot at working around Android and [embedded,
lame] STLport?
I would try removing the call to rend() in std::map<_Key, _Tp,
_Compare, _Alloc>::rend(). But I really should not modify program
code. Fiddling with a Makefile is
2011 Nov 09
1
(android) Re: Vorbis(ogg) and andorid
On 9 November 2011 10:40, Micol lupen <galaxi_999 at yahoo.it> wrote:
> Hi to all,
> i am a university student, i have this problem, i want to create application for android this application must to record and listen ogg file,
> i read that android use only ogg decoder for this problem i must use external library,wich library i can use ? can you show me some ?HowTo or book or site
2013 Jan 12
0
[LLVMdev] llvm shipping with android ndk for building ghc cross compiler
Hey,
I am trying to build a haskell cross compiler to android by building the
glasgow haskell compiler with target=arm-linux-androideabi.
It builds, but the executables the compiler produces segfaults on my
android device. This is probably not llvm related, but I want to rule
that out.
I used the llvm version shipped with ubuntu 12.10 for the build.
I was wondering if maybe I have to use llvm
2018 Jun 13
4
Success: Bring-up of LLVM/clang-built Linux ARM(32-bit) kernel for Android - Nexus 5
Hello,
I would like to share my successful bring-up of LLVM/clang-built Linux
ARM(32-bit) hammerhead kernel for Android running on my Nexus 5 smartphone.
After having successfully brought up LLVM/clang-built Linux kernel(since
v4.15.7 to the most recent v4.17) on x86_64, I was interested in
accomplishing the same on the ARM platform of my Nexus 5 - Android
smartphone. So, here is the complete
2013 Nov 25
2
[LLVMdev] Android, llvm-ar and setLastModificationAndAccessTime
Hmmm.... following up on your point I've noticed something strange.
futimens is missing from the NDK (r9b; it's not in any headers and the
libc.so files are the same all the way back to android-9), which is why
I thought it's missing from Android generally. The NDK is by far the
easiest way to cross-compile since it provides a standalone
cross-compilation toolchain. It is however
2019 Nov 05
1
Segmentation fault using rsync client on Android device
I've compiled rsync for my rooted Android (armeabi-v7a, 32-bit) device
using these instructions:
```
clone_or_update rsync master git://git.samba.org/rsync.git
cd rsync
./prepare-source
./configure \
--prefix=$INSTALL_ROOT/rsync \
--host=$AUTOCONF_PLATFORM \
CFLAGS="$CFLAGS -static"
make -j8 && make install
cd -
```
Best place for instructions to build I could find
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