I'm installing Gentoo on an Acer Aspire 110. It's one of the
"netbook" laptops. /etc/make.conf says:
CHOST="i486-pc-linux-gnu"
Is that correct?
- Grant
02-02-2009, 03:47 AM
Nikos Chantziaras
CHOST="i486-pc-linux-gnu" ?
Grant wrote:
I'm installing Gentoo on an Acer Aspire 110. It's one of the
"netbook" laptops. /etc/make.conf says:
CHOST="i486-pc-linux-gnu"
Is that correct?
If it's an Intel-compatible (x86) and Gentoo is 32-bit, then yes, that's
correct.
02-02-2009, 04:54 AM
Grant
CHOST="i486-pc-linux-gnu" ?
>> I'm installing Gentoo on an Acer Aspire 110. It's one of the
>> "netbook" laptops. /etc/make.conf says:
>>
>> CHOST="i486-pc-linux-gnu"
>>
>> Is that correct?
>
> If it's an Intel-compatible (x86) and Gentoo is 32-bit, then yes, that's
> correct.
OK, does i686 indicate 64-bit?
- Grant
02-02-2009, 05:08 AM
Nikos Chantziaras
CHOST="i486-pc-linux-gnu" ?
Grant wrote:
I'm installing Gentoo on an Acer Aspire 110. It's one of the
"netbook" laptops. /etc/make.conf says:
CHOST="i486-pc-linux-gnu"
Is that correct?
If it's an Intel-compatible (x86) and Gentoo is 32-bit, then yes, that's
correct.
OK, does i686 indicate 64-bit?
No. 64-bit is "x86_64-pc-linux-gnu". I don't know why you have i486
instead of i686, but I do know that i486 is correct too. If it has any
drawbacks compared to i686, no idea.
02-02-2009, 06:08 AM
Stroller
CHOST="i486-pc-linux-gnu" ?
On 2 Feb 2009, at 04:32, Grant wrote:
I'm installing Gentoo on an Acer Aspire 110. It's one of the
"netbook" laptops. /etc/make.conf says:
CHOST="i486-pc-linux-gnu"
Is that correct?
This thread has gotten confusing. If you mean the Acer Aspire One
netbook (of which the A110 is a sub-model) then it uses an Intel Atom
N270 processor.
http://en.wikipedia.org/wiki/Aspire_One
It appears to be i686 & Gentoo wiki alleges the safe CFLAGS thusly:
CHOST="i686-pc-linux-gnu"
CFLAGS="-march=prescott -O2 -pipe -fomit-frame-pointer"
CXXFLAGS="${CFLAGS}"
It looks like you've probably used the "x86" stage3 tarball instead of
the "i686" one. While you can change it [0], the best option is probably
to start again using the correct tarball.
Note that if you do want to change CHOST, you _MUST_ follow the guide[0]
or you will end up with problems.
[0] http://www.gentoo.org/doc/en/change-chost.xml
AllenJB
Grant wrote:
I'm installing Gentoo on an Acer Aspire 110. It's one of the
"netbook" laptops. /etc/make.conf says:
CHOST="i486-pc-linux-gnu"
Is that correct?
- Grant
02-02-2009, 02:45 PM
Grant
CHOST="i486-pc-linux-gnu" ?
> It looks like you've probably used the "x86" stage3 tarball instead of the
> "i686" one. While you can change it [0], the best option is probably to
> start again using the correct tarball.
>
> Note that if you do want to change CHOST, you _MUST_ follow the guide[0] or
> you will end up with problems.
>
> [0] http://www.gentoo.org/doc/en/change-chost.xml
Thanks a lot, I read somewhere that I should not change my CHOST so I
was trying to figure out what was going on as opposed to figuring out
how to change it.
- Grant
>> I'm installing Gentoo on an Acer Aspire 110. It's one of the
>> "netbook" laptops. /etc/make.conf says:
>>
>> CHOST="i486-pc-linux-gnu"
>>
>> Is that correct?
>>
>> - Grant
02-02-2009, 04:50 PM
Florian Philipp
CHOST="i486-pc-linux-gnu" ?
AllenJB schrieb:
Hi,
It looks like you've probably used the "x86" stage3 tarball instead of
the "i686" one. While you can change it [0], the best option is probably
to start again using the correct tarball.
Note that if you do want to change CHOST, you _MUST_ follow the guide[0]
or you will end up with problems.
[0] http://www.gentoo.org/doc/en/change-chost.xml
Is there any drawback from an i486 CHOST when -march settings indicate
an i686? Does it produce slower code?