|
Hello.
Linux kernel is written for compiling with gcc and uses a lot of small and ugly gcc-hacks. Which compilers can compile linux kernel except gcc?
The one, which can, is the Intel Compiler. What minimal version of it is needed for kernel compiling...
Started by osgx on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Must be compiled....
In short, you cannot, because the kernel code was written to take advantage of the gcc's compiler semantics...and between the kernel and the compiled code, the relationship is a very strong one, i.e.
|
|
While trying to compile a 64 bit linux kernel using gcc, I see the following error :
kernel/bounds.c:1: error: code model ‘kernel’ not supported in the 32 bit mode
kernel/bounds.c:1: sorry, unimplemented: 64-bit mode not compiled in
This is what gcc -...
Started by vivekian2 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If your system is a 64bit system then your vendor should be providing you with... .
What system are you running on?
If you host system is running in 32 bit mode you'll have to build a cross-compiler targeting x86_64.
Your compiler is 32-bit.
|
|
How do you read the errors?
I run after having .config -file at /home/aal/build/kernel.
/usr/src/linux-2.6$ make O=/home/aal/build/kernel/
I get
... cut ... CC [M] drivers/staging/go7007/s2250-board.o /usr/src/linux-2.6/drivers/staging/go7007/s2250-board...
Started by Masi on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
These in kernel config Device Drivers --> Staging Drivers ..
|
Ask your Facebook Friends
|
Posted 16 October 2011 - 01:11 AM
Hi.
I managed to compile ab73s kernel unchanged and then with a few changes.
I used the tutorial from here with ab kernel:
http://forum.xda-dev...ad.php?t=916198
First time compiling a kernel and it is running
Now I'd...
Started by rotation on
, 20 posts
by 3 people.
Answer Snippets (Read the full thread at slatedroid):
Here is what I do:
Using this as prebuilt: http://gitorious.org......
Then you can use i get out 5-6megs per kernel Posted 16 October 2011 - 12:36 PM
Possible...
Before kernel official integration in staging
search "compressed" in config...
|
|
[Guide]Editing and Compiling your own kernel
Original by Javierox at ModMyMoto Z6 Spanish Section translated and edited by me
Requirements:
A linux distribution Average to High knowledge with Terminal Average to High knowledge on using SBF Recalc noRSA...
Started by OCM on
, 15 posts
by 10 people.
Answer Snippets (Read the full thread at modmymobile):
Franco/Documents/Motorola Kernel Modding/arm-eabi/zn5compile'
franco@ubuntu:~/Documents/Motorola Kernel Modding/arm-eabi/zn5compile$ mv Platform/Makefile.top ./Makefile
mv: cannot stat `Platform/Makefile.top': No such file or directory
....
|
|
Solution for compiling kernel modules for openSUSE:Tumbleweed (and Kernel:stable) Hi,
I don't know if this is the right place to post.
The "problem" concerns various scopes
- Tumbleweed
- Kernel(:stable)
- Open Build Service (OBS)
Currently it is not ...
Started by munix9 on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at opensuse):
Marguerite Re: Solution for compiling kernel modules for openSUSE:Tumbleweed (and....
Re: Solution for compiling kernel modules for openSUSE:Tumbleweed (and Kernel:stable) Thank you so care about how a package is created.
|
|
On Mon, 30 Jul 2007 19:34:24 +0200, Claudio Scordino <cloud.of.andor@gmail.com> wrote:
Samuel Robb wrote:
> On Fri, 2007-07-27 at 16:43 +0200, Claudio Scordino wrote:
>> Hi all,
>>
>> I have to compile a Linux kernel ...
Answer Snippets (Read the full thread at omgili):
Gt;>
> >> I have to compile a Linux kernel using Cygwin on Windows XP (I know.
|
|
On Fri, 27 Jul 2007 16:43:10 +0200, Claudio Scordino <cloud.of.andor@gmail.com> wrote:
Hi all,
I have to compile a Linux kernel using Cygwin on Windows XP (I know, it's a
very silly thing, but it does not depend on me, unfortunately...)...
Answer Snippets (Read the full thread at omgili):
For cross-compiling a kernel, though, you may want schrieb:
> More....
I would go for
byte-compiling each one as a static object and then going this - Cygwin will handle symbolic
links perfectly well.
On building the kernel.
|
|
G'Day; I'm trying to learn to compile a kernel and all goes well until I get to "stage 2" then I get the following error;;
Building modules, stage 2.
MODPOST 3400 modules
ERROR: "__modver_version_show" [drivers/staging/rts5139/rts5139.ko] undefined!
ERROR...
Started by miykle on
, 15 posts
by 4 people.
Answer Snippets (Read the full thread at linuxquestions):
Try reusing the .config of a working kernel (shipped with your distribution) then run
Code....
G'Day and thanks for the repliesYou have possibly an inconsistent .config file .
And justification/cautions for compiling a kernel for Ubuntu.
|
|
After a linux kernel upgrade, my VMWare server cannot start until using vmware-config.pl to do some re-config work (including build some kernel modules).
If I update my windows VMWare host with latest Windows Service Pack, I usually not need to do anything...
Started by rIPPER on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
On the other hand, Windows has a very stable ....
VMWare needs to be rebuilt to use the ABI in the new kernel.
Linux does not have a stable kernel ABI - things like the internal layout of datastructures, etc changes from version to version.
|