Linking Confuson

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
frank
Member
Member
Posts: 729
Joined: Sat Dec 30, 2006 2:31 pm
Location: East Coast, USA

Post by frank »

Do you know 'kid' is from the Norse word 'kidh'? I was looking up if 'kids' is possessive or just plural. Is it "kid's", or "kids' "? I can't find a straight answer.
kids is more than one kid
kid's is the possessive form of one kid
kids' is the possessive form of more than one kid
INF1n1t
Member
Member
Posts: 60
Joined: Fri Dec 22, 2006 5:32 pm
Location: Somewhere Down...

Post by INF1n1t »

Is it not "children" ?
I think, I have problems with Bochs. The biggest one: Bochs hates me!
User avatar
Solar
Member
Member
Posts: 7615
Joined: Thu Nov 16, 2006 12:01 pm
Location: Germany
Contact:

Post by Solar »

[quote="Mini"]

Code: Select all

/* Link.ld */
OUTPUT_FORMAT("binary")
ENTRY(start)
SECTIONS
{
    .text 0x100000 :
    {
        code = .; _code = .; __code = .;
        *(.text)
        . = ALIGN(4096);
    }

    .data :
    {
        data = .; _data = .; __data = .;
        *(.data)
        . = ALIGN(4096);
    }

    .bss :
    {
        bss = .; _bss = .; __bss = .;
        *(.bss)
        . = ALIGN(4096);
    }

    end = .; _end = .; __end = .;
} 
Could someone please make those tutorial maintainers add .rodata to their example linkfiles properly?

Mini will return with the standard question why "Hello world" doesn't work...
Every good solution is obvious once you've found it.
Post Reply