[Q] Error during compiling kernel(it's killing me) - Android

Hi all
this error is really killing me ,I do everything for several days but no luck ever!
this is the goddamn error:
Code:
In file included from arch/arm/mach-msm/board-es209ra.c:108:0:
include/linux/usb/android.h:47:8: error: redefinition of 'struct usb_composition'
arch/arm/mach-msm/include/mach/msm_hsusb.h:54:8: note: originally defined here
make[1]: *** [arch/arm/mach-msm/board-es209ra.o] Error 1
make: *** [arch/arm/mach-msm] Error 2
this cod implement twice in files "android.h" and "msm-hsusb.h"
Code:
/* composition support structure */
struct usb_composition {
__u16 product_id;
unsigned long functions;
I play with cods such as removing , replacing but always failed
could anyone help me?
this is the sourceI use:https://github.com/freexperia/semc-kernel-qsd8k-ics

Is it possible we force compiler ignore the issue during process or something?

Amin` said:
Hi all
this error is really killing me ,I do everything for several days but no luck ever!
this is the goddamn error:
Code:
In file included from arch/arm/mach-msm/board-es209ra.c:108:0:
include/linux/usb/android.h:47:8: error: [B]redefinition[/B] of 'struct usb_composition'
arch/arm/mach-msm/include/mach/msm_hsusb.h:54:8: note: originally defined here
make[1]: *** [arch/arm/mach-msm/board-es209ra.o] Error 1
make: *** [arch/arm/mach-msm] Error 2
this cod implement twice in files "android.h" and "msm-hsusb.h"
Code:
/* composition support structure */
struct usb_composition {
__u16 product_id;
unsigned long functions;
I play with cods such as removing , replacing but always failed
could anyone help me?
this is the sourceI use:https://github.com/freexperia/semc-kernel-qsd8k-ics
Click to expand...
Click to collapse
Read your error, and learn some C.

thewadegeek said:
Read your error, and learn some C.
Click to expand...
Click to collapse
yes I know I must learn some c but for now can you give me fix for this error?

thewadegeek said:
Read your error, and learn some C.
Click to expand...
Click to collapse
fuk yeah!!! I searched and found out then fixed the issue my self!!! now what do you have to say?

Amin` said:
fuk yeah!!! I searched and found out then fixed the issue my self!!! now what do you have to say?
Click to expand...
Click to collapse
Cool story bro?
Sent from my Galaxy Nexus using xda premium

Amin` said:
fuk yeah!!! I searched and found out then fixed the issue my self!!! now what do you have to say?
Click to expand...
Click to collapse
Congrats.
---------- Post added at 07:27 PM ---------- Previous post was at 07:26 PM ----------
Amin` said:
yes I know I must learn some c but for now can you give me fix for this error?
Click to expand...
Click to collapse
And just as a FYI the answer to this would have been no, because you should never use a fix you don't understand in your work. It leads to sloppy practice and a poor end product.

Related

CM10 error [HELP]

I have thought of every possible way. The last way is to delete the lines but i need ur help to fix it
the error is
Code:
target arm C: libz <= external/zlib/adler32.c
In file included from external/zlib/zlib.h:34:0,
from external/zlib/zutil.h:24,
from external/zlib/adler32.c:9:
external/zlib/zconf.h:395:22: fatal error: limits.h: No such file or directory
compilation terminated.
make: *** [/home/yajnavalkya/cm10/out/target/product/beni/obj/SHARED_LIBRARIES/libz_intermediates/adler32.o] Error 1
you are missin limits.h try repo sync and update your source !
keyur2maru said:
you are missin limits.h try repo sync and update your source !
Click to expand...
Click to collapse
I searched a lot but found nothing
yajnab said:
I searched a lot but found nothing
Click to expand...
Click to collapse
He said to repo sync and then retry...not search, you may have to do a make clean after the repo sync if it still doesn't work
Sent from my SGH-I997 using Tapatalk 2

[Q] Build Error need urgent help

alright im trying to port cm11 to my LG Optimus F6 and ive tackled a few errors but this I need help with
Code:
frameworks/native/libs/gui/Surface.cpp: In member function 'virtual android::status_t android::Surface::lock(ANativeWindow_Buffer*, ARect*)':
frameworks/native/libs/gui/Surface.cpp:818:29: error: 'GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY' was not declared in this scope
make: *** [/home/ryan/android/system/out/target/product/f6mt/obj/SHARED_LIBRARIES/libgui_intermediates/Surface.o] Error 1
make: *** Waiting for unfinished jobs....
well I know it is that GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY isnt declared but I dont know how to declare that please help
I solved this by finally finding a way to declare it in the surface. CPP file by adding a enum and declaring it in there
hello
codingninja62001 said:
I solved this by finally finding a way to declare it in the surface. CPP file by adding a enum and declaring it in there
Click to expand...
Click to collapse
Where do you add enum and declaring
sattarvoybek said:
Where do you add enum and declaring
Click to expand...
Click to collapse
If I remember correctly I added the enum after the variable declarations in the surface. cpp file and declared it in that enum
codingninja62001 said:
I solved this by finally finding a way to declare it in the surface. CPP file by adding a enum and declaring it in there
Click to expand...
Click to collapse
codingninja62001 said:
If I remember correctly I added the enum after the variable declarations in the surface. cpp file and declared it in that enum
Click to expand...
Click to collapse
and be able to do a screenshot I don't understand much how to do ?
sattarvoybek said:
and be able to do a screenshot I don't understand much how to do ?
Click to expand...
Click to collapse
This was from a while ago and I had deleted the source when I got a new phone and it was uploaded to github so just wait a bit
codingninja62001 said:
This was from a while ago and I had deleted the source when I got a new phone and it was uploaded to github so just wait a bit
Click to expand...
Click to collapse
you have also this error was?
Code:
frameworks/native/libs/gui/Surface.cpp: In member function 'virtual android::status_t android::Surface::lock(ANativeWindow_Buffer*, ARect*)':
frameworks/native/libs/gui/Surface.cpp:828:29: error: 'GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY' was not declared in this scope
make: *** [/home/sattar/cm11/out/target/product/X9180/obj/SHARED_LIBRARIES/libgui_intermediates/Surface.o]
sattarvoybek said:
you have also this error was?
Code:
frameworks/native/libs/gui/Surface.cpp: In member function 'virtual android::status_t android::Surface::lock(ANativeWindow_Buffer*, ARect*)':
frameworks/native/libs/gui/Surface.cpp:828:29: error: 'GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY' was not declared in this scope
make: *** [/home/sattar/cm11/out/target/product/X9180/obj/SHARED_LIBRARIES/libgui_intermediates/Surface.o]
Click to expand...
Click to collapse
Heres a random cpp file and read the comments
Code:
/*Look for all these defines at the beggining of the file then put the enum after them. Don't chamge the defines in that file these are just a example */
#define JUST A EXAMPLE
#define JUST A EXAMPLE
#define JUST A EXAMPLE
enum {
/*THe only part of this you need is this enum and you need to set GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY to whatever your device needs*/
GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY=
}
codingninja62001 said:
This was from a while ago and I had deleted the source when I got a new phone and it was uploaded to github so just wait a bit
Click to expand...
Click to collapse
codingninja62001 said:
Heres a random cpp file and read the comments
Code:
/*Look for all these defines at the beggining of the file then put the enum after them. Don't chamge the defines in that file these are just a example */
#define JUST A EXAMPLE
#define JUST A EXAMPLE
#define JUST A EXAMPLE
enum {
/*THe only part of this you need is this enum and you need to set GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY to whatever your device needs*/
GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY=
}
Click to expand...
Click to collapse
I still don't understand here ->
Code:
#ifdef QCOM_BSP
setUsage(mReqUsage & GRALLOC_USAGE_PRIVATE_EXTERNAL_ONLY |
mReqUsage & GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY |
GRALLOC_USAGE_SW_READ_OFTEN |
GRALLOC_USAGE_SW_WRITE_OFTEN);
#else
sattarvoybek said:
I still don't understand here ->
Code:
#ifdef QCOM_BSP
setUsage(mReqUsage & GRALLOC_USAGE_PRIVATE_EXTERNAL_ONLY |
mReqUsage & GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY |
GRALLOC_USAGE_SW_READ_OFTEN |
GRALLOC_USAGE_SW_WRITE_OFTEN);
#else
Click to expand...
Click to collapse
That code is just calling the missing variable it shoulden't be a problem when you declare the variable
codingninja62001 said:
That code is just calling the missing variable it shoulden't be a problem when you declare the variable
Click to expand...
Click to collapse
well thank you three sit cannot collect cm11 if you really want that someone knows or someone that was the same as I'm going there someday!
sattarvoybek said:
well thank you three sit cannot collect cm11 if you really want that someone knows or someone that was the same as I'm going there someday!
Click to expand...
Click to collapse
In clear english please

Error when compiling 5.0 for 64 bit device

Whenever I compile a non-AOSP ROM I always seem to get an error similar to this.
Code:
target C: libcutils <= system/core/libcutils/config_utils.c
In file included from bionic/libc/kernel/uapi/linux/signal.h:21:0,
from bionic/libc/include/signal.h:45,
from bionic/libc/include/sys/select.h:35,
from bionic/libc/include/unistd.h:34,
from bionic/libc/include/fcntl.h:37,
from system/core/libcutils/config_utils.c:20:
bionic/libc/include/signal.h:85:18: error: expected ':', ',', ';', '}' or '__attribute__' before '.' token
sighandler_t sa_handler;
^
make: *** [/home/joshua/android/PAC/out/target/product/flounder/obj/STATIC_LIBRARIES/libcutils_intermediates/config_utils.o] Error 1
make: *** Waiting for unfinished jobs....
In file included from bionic/libc/kernel/uapi/linux/signal.h:21:0,
from bionic/libc/include/signal.h:45,
from bionic/libc/include/pthread.h:33,
from system/core/include/cutils/threads.h:34,
from system/core/libcutils/hashmap.c:20:
bionic/libc/include/signal.h:85:18: error: expected ':', ',', ';', '}' or '__attribute__' before '.' token
sighandler_t sa_handler;
^
make: *** [/home/joshua/android/PAC/out/target/product/flounder/obj/STATIC_LIBRARIES/libcutils_intermediates/hashmap.o] Error 1
In file included from bionic/libc/kernel/uapi/linux/signal.h:21:0,
from bionic/libc/include/signal.h:45,
from bionic/libc/include/sys/select.h:35,
from bionic/libc/include/unistd.h:34,
from system/core/libcutils/native_handle.c:23:
bionic/libc/include/signal.h:85:18: error: expected ':', ',', ';', '}' or '__attribute__' before '.' token
sighandler_t sa_handler;
^
Let me know if you need any other information.
Thanks.
The same problem
I have the same problem. Did you find the solution for this?
Anyone know about this, please help!
NguyenTuy said:
I have the same problem. Did you find the solution for this?
Anyone know about this, please help!
Click to expand...
Click to collapse
Yes some commits cm did fixed it.
Please help
joshuabg said:
Yes some commits cm did fixed it.
Click to expand...
Click to collapse
I researched some days but no result was found. I will greatly appreciate if you show me how to fix it.
NguyenTuy said:
I researched some days but no result was found. I will greatly appreciate if you show me how to fix it.
Click to expand...
Click to collapse
What ROM are you trying to compile?
joshuabg said:
What ROM are you trying to compile?
Click to expand...
Click to collapse
I have same problem. I'm trying to buid flounder for HTC Nexus 9. Could you please tell me how to fix it?
Thanks a lot!
up to 10 post hix,up for everyone:good::good::good::good::good::good::good::good:
In order to help you, I will need a link to your ROM source. In adition to your specific error.
joshuabg said:
In order to help you, I will need a link to your ROM source. In adition to your specific error.
Click to expand...
Click to collapse
At this moment, I'm using AOSP android-5.0.1_r1 from Android Source and then compile
lunch aosp_flounder-userdebug
make -j4
=> It done without error.
After add a new product.
In file included from bionic/libc/kernel/uapi/linux/signal.h:21:0,
from bionic/libc/include/signal.h:43,
from bionic/libc/include/sys/select.h:35,
from bionic/libc/include/unistd.h:34,
from vendor/newvendor/internal/libstcommon/src/NewMwMessage.c:24:
bionic/libc/include/signal.h:83:18: error: expected ':', ',', ';', '}' or '__attribute__' before '.' token
sighandler_t sa_handler;
^
It is hard to find out what happen to me. Please help me to save my day. I really appreciate your help.
Just a question, how did you resolve your issue?
taduongngoc said:
At this moment, I'm using AOSP android-5.0.1_r1 from Android Source and then compile
lunch aosp_flounder-userdebug
make -j4
=> It done without error.
After add a new product.
In file included from bionic/libc/kernel/uapi/linux/signal.h:21:0,
from bionic/libc/include/signal.h:43,
from bionic/libc/include/sys/select.h:35,
from bionic/libc/include/unistd.h:34,
from vendor/newvendor/internal/libstcommon/src/NewMwMessage.c:24:
bionic/libc/include/signal.h:83:18: error: expected ':', ',', ';', '}' or '__attribute__' before '.' token
sighandler_t sa_handler;
^
It is hard to find out what happen to me. Please help me to save my day. I really appreciate your help.
Just a question, how did you resolve your issue?
Click to expand...
Click to collapse
I need to see more of your error. I removed the kernel headers from the Android.mk causing the problem.
joshuabg said:
I need to see more of your error. I removed the kernel headers from the Android.mk causing the problem.
Click to expand...
Click to collapse
I found my issue 4 days ago by removing KERNEL_HEADERS from the INCLUDE_C_HEADERS parameter in the make file.
Anyway, thank you very much for your help.
Hashbang173 said:
I need to see more of your error. I removed the kernel headers from the Android.mk causing the problem.
Click to expand...
Click to collapse
Whoa, that fixed it for me! Thank you!
Hashbang173 said:
I need to see more of your error. I removed the kernel headers from the Android.mk causing the problem.
Click to expand...
Click to collapse
Thanks a lot!
Heres a link to what you need to cherry-pick
https://github.com/HalogenOS/androi...mmit/1cdeb7268b53ea0754dad87b75f2ed0d418e6896
(Just remove the headers)
I struggled with this for a week on a RIL module. Turns out the bionic/libc version in my version of Android 5.1.1 had an erroneous implementation of signal.h for 64bit programs. It used #define in the linux/signal.h to change code elsewhere in the library but hadn't made the 64bit/mips versions og signalaction in the signal.h compatible by undefining them before and redefining them after the declarations. Also you'd have to give the anon-union inside the struct the name _u.

no rule to make target '/.txt'

hey guys! I'm doing a test compile of CM, just trying to get it running on the Raspberry Pi 2 for kicks, and I ran into a compile issue:
Code:
Install: /out/host/linux-x86/bin/apicheck
Checking API: checkpublicapi-last
Checking API: checkpublicapi-current
Docs droiddoc: /out/target/common/docs/system-api-stubs
DroidDoc took 14 sec. to write docs to /out/target/common/docs/system-api-stubs
Checking API: checksystemapi-last
Checking API: checksystemapi-current
make: *** No rule to make target '/.txt', needed by '/out/target/common/obj/PACKAGING/checkpublicapi-cm-last-timestamp'. Stop.
it's very vague, so I'm wondering if anyone could provide some insight.
using sources:
https://github.com/peyo-hd/device_brcm_rpi2
https://github.com/peyo-hd/local_manifests
Device?
Edited OP with more info*
Oh lol exotic.
Device tree an all other device specific files please.
Trafalgar Square said:
Oh lol exotic.
Device tree an all other device specific files please.
Click to expand...
Click to collapse
added sources to OP
I'm having the same issue compiling CM-13.0 for GT-P5210. Any update? Thank you.
Im having the exact same error:
Code:
Export includes file: system/core/libsparse/Android.mk -- /mnt/raid5/Other/development/CM-13-0/android/system/out/host/linux-x86/obj/EXECUTABLES/simg2img_host_intermediates/export_includes
make: *** No rule to make target `prebuilts/cmsdk/api/.txt', needed by `/mnt/raid5/Other/development/CM-13-0/android/system/out/target/common/obj/PACKAGING/checkpublicapi-cm-last-timestamp'. Stop.
make: *** Waiting for unfinished jobs....
Starting language-specific parse...
Processing types...
C++ analysis...
Generating wrappers...
make: Leaving directory `/mnt/raid5/Other/development/CM-13-0/android/system'
#### make failed to build some targets (13:18 (mm:ss)) ####
trying to build CyanogenMod R7Plus
latest repo sync for -b CM-13.0
used breakfast to get the https://github.com/cyanogenmod/android_device_oppo_r7plus
extracted blobs using the script and a nightly.zip
Update:
to those who come here and have the ".txt" file error seen above.
this is what i did to fix it:
Code:
1. I deleted the whole source
2. i run this script "build-environment-setup.sh" get it here: https://github.com/akhilnarang/scripts
3. I initiated the repo again "repo init -u https://github.com/CyanogenMod/android.git -b "cm-13.0""
4. synced the repo using "repo sync -j4 --force-sync -f --no-tags --no-clone-bundle --no-repo-verify"
from here on continue like in the guides.
I have that error since March and had it temporarily resolved via switching to the stable branch.
Thanks to @celoxocis I finally built the cm13 nightly, although I followed only the second step from his guide.
make: *** No rule to make target '/-1.txt', needed by '/home/android/y300/out/target/common/obj/PACKAGING/checkpublicapi-cm-last-timestamp'. Stop.
Click to expand...
Click to collapse
Same problem on Huawei Y300 / u8833, AICP MM6.0 sourcecode. After "lunch full_u8833-userdebug" and after "make -j2" got error.
guys how solved this issue could help me anyone ???
here log ...
http://www.hastebin.com/wekudopujo.rb
---------- Post added at 10:36 PM ---------- Previous post was at 10:35 PM ----------
adeii said:
Same problem on Huawei Y300 / u8833, AICP MM6.0 sourcecode. After "lunch full_u8833-userdebug" and after "make -j2" got error.
Click to expand...
Click to collapse
umaturman said:
I have that error since March and had it temporarily resolved via switching to the stable branch.
Thanks to @celoxocis I finally built the cm13 nightly, although I followed only the second step from his guide.
Click to expand...
Click to collapse
celoxocis said:
Im having the exact same error:
Code:
Export includes file: system/core/libsparse/Android.mk -- /mnt/raid5/Other/development/CM-13-0/android/system/out/host/linux-x86/obj/EXECUTABLES/simg2img_host_intermediates/export_includes
make: *** No rule to make target `prebuilts/cmsdk/api/.txt', needed by `/mnt/raid5/Other/development/CM-13-0/android/system/out/target/common/obj/PACKAGING/checkpublicapi-cm-last-timestamp'. Stop.
make: *** Waiting for unfinished jobs....
Starting language-specific parse...
Processing types...
C++ analysis...
Generating wrappers...
make: Leaving directory `/mnt/raid5/Other/development/CM-13-0/android/system'
#### make failed to build some targets (13:18 (mm:ss)) ####
trying to build CyanogenMod R7Plus
latest repo sync for -b CM-13.0
used breakfast to get the https://github.com/cyanogenmod/android_device_oppo_r7plus
extracted blobs using the script and a nightly.zip
Click to expand...
Click to collapse
guys how solved this issue could help me anyone ???
here log ...
http://www.hastebin.com/wekudopujo.rb
metrixx02 said:
guys how solved this issue could help me anyone ???
here log ...
http://www.hastebin.com/wekudopujo.rb
Click to expand...
Click to collapse
Use build-environment-setup.sh from the guide. The error is gone when I installed some dependencies.
Does anyone know how to fix this damn error on Opensuse.
Afaik, all distros apart from ones based on ubuntu/debian have this error.
Silesh.Nair said:
Does anyone know how to fix this damn error on Opensuse.
Afaik, all distros apart from ones based on ubuntu/debian have this error.
Click to expand...
Click to collapse
Did you try this guide?
That's not it. It just works fine on debian, Ubuntu or mint. But never on Suse.
Sent from my Moto G (4) using Tapatalk
kronflux said:
hey guys! I'm doing a test compile of CM, just trying to get it running on the Raspberry Pi 2 for kicks, and I ran into a compile issue:
Code:
Install: /out/host/linux-x86/bin/apicheck
Checking API: checkpublicapi-last
Checking API: checkpublicapi-current
Docs droiddoc: /out/target/common/docs/system-api-stubs
DroidDoc took 14 sec. to write docs to /out/target/common/docs/system-api-stubs
Checking API: checksystemapi-last
Checking API: checksystemapi-current
make: *** No rule to make target '/.txt', needed by '/out/target/common/obj/PACKAGING/checkpublicapi-cm-last-timestamp'. Stop.
it's very vague, so I'm wondering if anyone could provide some insight.
using sources:
https://github.com/peyo-hd/device_brcm_rpi2
https://github.com/peyo-hd/local_manifests
Click to expand...
Click to collapse
Use
Code:
make update-api && make -j4
adityaupreti said:
it's very vague, so I'm wondering if anyone could provide some insight.
using sources:
https://github.com/peyo-hd/device_brcm_rpi2
https://github.com/peyo-hd/local_manifests
Use
Click to expand...
Click to collapse
Check my post (post #8) I'm this thread for how to fix it. You are missing an dependency. Also make sure you use Java 7 for compile Java 8 is not recommended yet.
---------- Post added at 10:41 AM ---------- Previous post was at 10:38 AM ----------
Silesh.Nair said:
That's not it. It just works fine on debian, Ubuntu or mint. But never on Suse.
Click to expand...
Click to collapse
I have no Idea about Suse but it works on Ubuntu.
I suggest to look at the scripts code:
https://github.com/akhilnarang/scripts
Looks at the packages being installed for Ubuntu and Arch (the arch script). Find the equivalent package names for Suse.
Or just switch to Ubuntu. Even OEM use Ubuntu for Stock compilation.
Also make sure you use Java 7 for compilation as Java 8 is not recommended yet.
celoxocis said:
Check my post (post #8) I'm this thread for how to fix it. You are missing an dependency. Also make sure you use Java 7 for compile Java 8 is not recommended yet.
---------- Post added at 10:41 AM ---------- Previous post was at 10:38 AM ----------
I have no Idea about Suse but it works on Ubuntu.
I suggest to look at the scripts code:
https://github.com/akhilnarang/scripts
Looks at the packages being installed for Ubuntu and Arch (the arch script). Find the equivalent package names for Suse.
Or just switch to Ubuntu. Even OEM use Ubuntu for Stock compilation.
Also make sure you use Java 7 for compilation as Java 8 is not recommended yet.
Click to expand...
Click to collapse
Haha why ur telling to me tell that guy who have error
adityaupreti said:
Haha why ur telling to me tell that guy who have error
Click to expand...
Click to collapse
Ah well scrolled down thought your post was his (due to huge quote) and replied. He will get it when he checks the thread.
Code:
make: *** No rule to make target '/.txt', needed by '/out/target/common/obj/PACKAGING/checkpublicapi-cm-last-timestamp'. Stop.
Try installing the bc program.

[KERNEL] Some compile errors

Code:
Assembler messages:
arch/arm64/kernel/entry-fpsimd.S:53: Error: unexpected end of file in irp or irpc
/tmp/cczAQDmw.s: Error: local label `"0" (instance number 1 of a fb label)' is not defined
make[1]: *** [scripts/Makefile.build:344: arch/arm64/kernel/entry-fpsimd.o] Error 1
I got this error, I searched on Google but found nothing about it. I use Google's gcc-4.9 toolchain.
May anyone help me please?
Hi!
This is a preliminary suggestion, the ROM is not made for your phone.
CFCbazar said:
Hi!
This is a preliminary suggestion, the ROM is not made for your phone.
Click to expand...
Click to collapse
But I got this from Samsung OSS, just want to compile my device's kernel :/
Are you sure that you have the floating point configuration correct?
Code:
CONFIG_KERNEL_MODE_NEON
CONFIG_ENABLE_FP_SIMD_SETTINGS
Renate said:
Are you sure that you have the floating point configuration correct?
Code:
CONFIG_KERNEL_MODE_NEON
CONFIG_ENABLE_FP_SIMD_SETTINGS
Click to expand...
Click to collapse
I have CONFIG_KERNEL_MODE_ON as y on my defconfig but I don't have CONFIG_ENABLE_FP_SIMD_SETTINGS on my defconfig.
gorkemoji said:
But I got this from Samsung OSS, just want to compile my device's kernel :/
Click to expand...
Click to collapse
That's not a guarantee. It has happened before. Or you could try the steps from their site. Maybe you missed something.
Maybe the assembler and your FPU type don't agree.

Categories

Resources