Re: [android-building] Android Build Teststub -- Linker failed "undefined symbol" Android.bp // maybe missing an include path?

2020-03-31 Thread jrw
no wonder the symbol isn't found. thanks for the fast response! -- -- You received this message because you are subscribed to the "Android Building" mailing list. To post to this group, send email to android-building@googlegroups.com To unsubscribe from this group, send email to android-buildin

Re: [android-building] Android Build Teststub -- Linker failed "undefined symbol" Android.bp // maybe missing an include path?

2020-03-31 Thread 'Dan Willemsen' via Android Building
The `libsonic` in Android only includes `sonic.c`: https://cs.android.com/android/platform/superproject/+/master:external/sonic/Android.bp openInputWaveFile and readFromWaveFile are in `wave.c` - Dan On Tue, Mar 31, 2020 at 2:56 PM jrw wrote: > Hello, > > i'm facing an issue with the linker, m

[android-building] Android Build Teststub -- Linker failed "undefined symbol" Android.bp // maybe missing an include path?

2020-03-31 Thread jrw
Hello, i'm facing an issue with the linker, most likely because of lack of knowledge :/ i think i lack an include path or something like that, but i could not find something in the documentation or got confused by the Android.bp files. i try to simple example fuzzer: #include #include #incl