Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Unsupported Software
  • Search

100% Core2Duo Gentoo happing here. AKA GCC-4.3.0

This forum covers all Gentoo-related software not officially supported by Gentoo. Ebuilds/software posted here might harm the health and stability of your system(s), and are not supported by Gentoo developers. Bugs/errors caused by ebuilds from overlays.gentoo.org are covered by this forum, too.
Post Reply
Advanced search
64 posts
  • 1
  • 2
  • 3
  • Next
Author
Message
DualCpuUser
n00b
n00b
Posts: 71
Joined: Thu Mar 03, 2005 1:03 am

100% Core2Duo Gentoo happing here. AKA GCC-4.3.0

  • Quote

Post by DualCpuUser » Tue Dec 12, 2006 5:31 am

..Finally, but the whole system is compiled -march-core2 off of a mostly stable version of gcc-4.3.0

Took a long time to find the compiler switches that built a working compiler good enough to compile the whole system but 575 packages later.

Reply if you guys interested in the know-how, not to difficult now.
Last edited by DualCpuUser on Wed Dec 27, 2006 12:33 pm, edited 1 time in total.
-Ron
Top
jayricho
n00b
n00b
User avatar
Posts: 3
Joined: Wed Nov 29, 2006 3:53 pm
Location: JonxTown

  • Quote

Post by jayricho » Tue Dec 12, 2006 7:21 am

Cool!
Of course details are welcome.
Are you talking about a stage 3 'fresh' install or emerge -e system/world (and toolchains rebuilding)?
Thanks,
Jay
Top
remix
l33t
l33t
User avatar
Posts: 797
Joined: Wed Apr 28, 2004 8:50 am
Location: hawaii

  • Quote

Post by remix » Tue Dec 12, 2006 8:09 am

stage3? what happened this past year, i know i'm not the only one who does stage1's anymore... or is that how to do it now, stage3, then emerge configure and compile your own kernel, change your cflags, and re-emerge system and world ?


anyway, i have core2duo.. i think i'm going to do -march=core2 also... please post details. gcc version, any extra packages you need? things to unmask? make.conf...

thanks.
help the needy
Top
DualCpuUser
n00b
n00b
Posts: 71
Joined: Thu Mar 03, 2005 1:03 am

  • Quote

Post by DualCpuUser » Tue Dec 12, 2006 9:08 am

Before I start typing this up for the interested few, you may want to make sure you enjoy a never perfect Gentoo. :P, aka, not the ~AMD64 timid crowed.

Before I get started whom has a binutils-2.18-1210.ebuild???? I would like to try fixes that went into the latest head. From bugzilla it looks like head is labeled 2.18.

** More to follow but this will get you started.
1) copy flag-o-matic.eclass to /usr/local/portage/eclass
2) add the directory to your portage overly env. var. in make.conf
3) add the flags you want to use. In 4.3 full core2 is supported, so SSSE3 is avail. This is the head of my flag-o-matic eclass

Code: Select all

setup-allowed-flags() {
	if [[ -z ${ALLOWED_FLAGS} ]] ; then
		export ALLOWED_FLAGS="-pipe"
		export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -O3 -mcpu -march -mtune"
		export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all"
		export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-bounds-checking"
		export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-PIE -fno-pie -fno-unit-at-a-time"
		export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g0 -g1 -g2 -g3 -ggdb -ggdb0 -ggdb1 -ggdb2 -ggdb3"
		export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-ident"
	fi
#RDH Allow my C flags.
	ALLOWED_FLAGS="${ALLOWED_FLAGS} -D -pipe -fomit-frame-pointer -mssse3 -msse3"
	ALLOWED_FLAGS="${ALLOWED_FLAGS} -fweb -frename-registers -momit-leaf-frame-pointer"
	ALLOWED_FLAGS="${ALLOWED_FLAGS} -funroll-loops -freorder-blocks -fprefetch-loop-arrays -ftracer"
	ALLOWED_FLAGS="${ALLOWED_FLAGS} -fmodulo-sched -fgcse-lm -fgcse-sm -fgcse-las -fgcse-after-reload"
	ALLOWED_FLAGS="${ALLOWED_FLAGS} -peel-loops"
	ALLOWED_FLAGS="${ALLOWED_FLAGS} -ftree-loop-im -ftree-loop-linear -ftree-loop-ivcanon -ftree-vectorize"
	ALLOWED_FLAGS="${ALLOWED_FLAGS} -fvariable-expansion-in-unroller -combine -save-temps"

	# allow a bunch of flags that negate features / control ABI
	ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all"
	ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \
		-mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-ssse3 -mno-3dnow \
		-mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 \
4) SVN down yourself the correct 4.3.0 source tree. KDESVN works for this.
5) At this time, r119733 is currently what my emwrap.sh -S is built on plus glibc, binutils.
6) use 'export' in KDESVN to dump a gcc tree and I use 4.3.98.
7) *** IMPORTANT *** Don't forget: Change in GCC/BASE.VER the 4.3.0 to 4.3.98, then edit c-decl.c and change #define WANT_C99_INLINE_SEMANTICS to 0 from 1.
8) Unmask GCC, GlibC, Binutils.
9) Pal_gene has an ebuild for glibc-2.5-20051210 and I just used that tonight, and so far system running with it.
10) tar up the tree with "tar -cjf /gcc-4.3.98.tar.bz2 /gcc-4.3.98
11) throw the tar ball into distfiles.
12) cp Vipers 4.3.0-xxxxxx patch file and rename it 4.3.98
13) For now the patch set his ebuild uses doesn't appear to conflict with 4.3.0. A lot of code is being dumped in and I expect that to change.

These destructions will be edit in the morning after I read them, to tired ATM. So look for an "EDIT" if I change something. But this is enough to get started.
-Ron
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Tue Dec 12, 2006 12:53 pm

great ! 8)

everytime I try / emerge something at the beginning I have to wait at least a minute, cpu load gets pretty high in that time

any idea? do you encounter the same behavior ?

this happened after I edited my flag-o-matic.eclass

could you please post your whole flag-o-matic ... ?

Thanks in advance

Cheers

kernelOfTruth

update:

this seems to be gone after I have emerged some apps
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
DualCpuUser
n00b
n00b
Posts: 71
Joined: Thu Mar 03, 2005 1:03 am

  • Quote

Post by DualCpuUser » Wed Dec 13, 2006 2:00 am

My biggest pita ATM is modules-update, which calls generate-modprobe.conf. It get called OVER and OVER again, till all of swap space is consumed, but not every time.

Sometimes it will run, but most is: "generating module.conf by hand...." then off to lunch the system goes. Its like generate-modprobe.conf is being called recursively.

As for flag-o-matic I posed all of what I changed, I don't recall changing anything else. I also not sure if I need my mods inside or outside of the "-z" I guessed.
-Ron
Top
DualCpuUser
n00b
n00b
Posts: 71
Joined: Thu Mar 03, 2005 1:03 am

  • Quote

Post by DualCpuUser » Wed Dec 13, 2006 2:13 am

Ghostscript-gpl doesn't like to compile at first, but after the system is rebuild and re-emerge it, it just did here. There is probably a dependancy getting missed by portage and when it rebuilt, then it builds.

I typically don't build my systme with LDFLAGS, here are my CLFAGS/LDFLAGS/
BTW, you will see boat loads of new warnings from the compiler.

Code: Select all

LDFLAGS="-Wl,--sort-common -Wl,-zcombreloc -Wl,-znow"
# -DENABLE_CHECKING=1 for gcc builds
CFLAGS="-pipe -fomit-frame-pointer -g1"
#CFLAGS="${CFLAGS}  -combine"
CXXFLAGS="${CFLAGS}"

#GCC setup:Note:x64 compiler defaults to -msse -msse2 -fpmath=sse

#CFLAGS="${CFLAGS} -march=nocona -msse3 -O2"
CFLAGS="${CFLAGS} -march=core2 -O2"
#CFLAGS="${CFLAGS} -mno-ssse3"
CFLAGS="${CFLAGS} -frename-registers"
CFLAGS="${CFLAGS} -fweb"
CFLAGS="${CFLAGS} -ftracer"
CFLAGS="${CFLAGS} -fmodulo-sched"
#CFLAGS="${CFLAGS} -freschedule-modulo-scheduled-loops"
CFLAGS="${CFLAGS} -fvariable-expansion-in-unroller"
CFLAGS="${CFLAGS} -fgcse-sm"
CFLAGS="${CFLAGS} -fgcse-las"
#CFLAGS="${CFLAGS} -fgcse-after-reload"
#CFLAGS="$(CFLAGS} -fnew-ra"
CFLAGS="${CFLAGS} -ftree-vectorize"
#CFLAGS="${CFLAGS} -ftree-loop-im"
#CFLAGS="${CFLAGS} -ftree-loop-linear"
#CFLAGS="${CFLAGS} -ftree-loop-ivcanon"
#CFLAGS="${CFLAGS} -frtl-abstract-sequences"
#CFLAGS="${CFLAGS} -fpeel-loops"

CXXFLAGS="${CFLAGS}"

#SEH not like rb&p below in C++ flags outputs nag warning.
CFLAGS="${CFLAGS} -freorder-blocks-and-partition"
Here is what didn't build from ./emwrap.sh -W -X system

Code: Select all

media-libs/libmad-0.15.1b-r2
media-gfx/povray-3.6.1-r1
media-libs/netpbm-10.36.0
media-libs/gle-3.1.0-r1
dev-util/kdesvn-0.11.0
www-client/mozilla-firefox-2.0-r2
-Ron
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sun Dec 17, 2006 3:27 pm

how did you manage to let gcc compile with WANT_C99_INLINE_SEMANTICS 0 at all ?

I tried several snapshots & also fresh from svn but always got:
{standard input}: Assembler messages:
{standard input}:3064: Error: symbol `fstatat64' is already defined
{standard input}:3509: Error: symbol `fstat64' is already defined
{standard input}:3529: Error: symbol `lstat64' is already defined
{standard input}:3621: Error: symbol `stat64' is already defined
make[3]: *** [unix.lo] Error 1
make[3]: Leaving directory `/var/tmp/portage/sys-devel/gcc-4.3.98/work/build/i686-pc-linux-gnu/libgfortran'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/var/tmp/portage/sys-devel/gcc-4.3.98/work/build/i686-pc-linux-gnu/libgfortran'
make[1]: *** [all-target-libgfortran] Error 2
make[1]: Leaving directory `/var/tmp/portage/sys-devel/gcc-4.3.98/work/build'
make: *** [profiledbootstrap] Error 2

!!! ERROR: sys-devel/gcc-4.3.98 failed.
Call stack:
ebuild.sh, line 1580: Called dyn_compile
ebuild.sh, line 945: Called src_compile
ebuild.sh, line 1269: Called toolchain_src_compile
toolchain.eclass, line 24: Called gcc_src_compile
toolchain.eclass, line 1536: Called gcc_do_make
toolchain.eclass, line 1410: Called die

!!! emake failed with profiledbootstrap
!!! If you need support, post the topmost build error, and the call stack if relevant.
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
DualCpuUser
n00b
n00b
Posts: 71
Joined: Thu Mar 03, 2005 1:03 am

  • Quote

Post by DualCpuUser » Mon Dec 18, 2006 9:47 pm

KOT,

I do it by exporting my gcc tree. 'svn export svn-dir export-dir'

Change the file, change base-ver also, for my ebuild, then tar it up, through it in distfiles. Digest, then test it, see what they are, and then install it or not.
-Ron
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Wed Dec 20, 2006 9:17 am

I did exactly those steps you wrote down, but it doesn't want to

bad luck :? ?

guess I was wrong:
12) cp Vipers 4.3.0-xxxxxx patch file and rename it 4.3.98
which patch do you mean with vipers' patch file ?
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
DualCpuUser
n00b
n00b
Posts: 71
Joined: Thu Mar 03, 2005 1:03 am

  • Quote

Post by DualCpuUser » Wed Dec 20, 2006 12:05 pm

The 4.3.0-alpha 0.2 patch file that was/is used in the 4.3.0-alpha ebuild, sorry for confusion, not 100% sure we should be using any patches, but as of yet, none conflict.
-Ron
Top
Gentree
Watchman
Watchman
User avatar
Posts: 5350
Joined: Tue Jul 01, 2003 12:51 am
Location: France, Old Europe

  • Quote

Post by Gentree » Fri Dec 22, 2006 10:56 pm

Before I get started whom has a binutils
That's who has, not whom has. Whom is for the object of a sentence : the man with whom I spoke yesterday.

Nice to see someone attempting to use correct grammar , so I just thought you might like to know. :wink:
Linux, because I'd rather own a free OS than steal one that's not worth paying for.
Gentoo because I'm a masochist
AthlonXP-M on A7N8X. Portage ~x86
Top
obsrv
Apprentice
Apprentice
User avatar
Posts: 167
Joined: Fri Aug 19, 2005 10:46 pm
Location: Panevėžys, Lithuania
Contact:
Contact obsrv
Website

  • Quote

Post by obsrv » Sat Dec 23, 2006 8:24 pm

How did you upgrade to GCC 4.3?
Top
Mousee
Apprentice
Apprentice
User avatar
Posts: 291
Joined: Mon Mar 29, 2004 7:14 am
Location: Illinois, USA

  • Quote

Post by Mousee » Sat Dec 23, 2006 11:06 pm

obsrv wrote:How did you upgrade to GCC 4.3?
It was already explained in this thread. 4th post to be exact.
Top
Bornio
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 129
Joined: Mon Dec 16, 2002 5:25 pm

  • Quote

Post by Bornio » Sun Dec 24, 2006 12:21 am

What does the core2 tune do which is new?
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sun Dec 24, 2006 9:58 am

-mssse3

extended sse3 support

in addition to that it shall be 10-20% faster

@DualCpuUser:

which (USE-)flags are you using for gcc?
it always fails on (libg)fortran for me
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
DualCpuUser
n00b
n00b
Posts: 71
Joined: Thu Mar 03, 2005 1:03 am

  • Quote

Post by DualCpuUser » Sun Dec 24, 2006 10:46 pm

I don't compile Fortran, so I don't know KOT. I am currently in XP when I got your msg, so I can't copy my use flags, but its a crap load, probably to many, but what the hey. I'll repost later.

PS. I should have said. 99% Core2Duo happening. :D
-Ron
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Wed Dec 27, 2006 1:14 pm

thanks, that did it :idea: ,

recompiling world now:

with FEATURES="-test" emerge -e system

no package failed :D

in emerge -e world

510 packages are more to go

until now only 1 failed
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
DualCpuUser
n00b
n00b
Posts: 71
Joined: Thu Mar 03, 2005 1:03 am

  • Quote

Post by DualCpuUser » Wed Dec 27, 2006 9:15 pm

Fingers are crossed. :D
-Ron
Top
Kate Monster
Apprentice
Apprentice
Posts: 226
Joined: Tue Jun 13, 2006 3:39 am
Location: Clarkston, Michigan

  • Quote

Post by Kate Monster » Sat Dec 30, 2006 5:52 am

Cool! j/c, when did the "core2" flag come about anyway? And if thats for the core2, what was the "nocona" flag we've been using until now?
Top
DualCpuUser
n00b
n00b
Posts: 71
Joined: Thu Mar 03, 2005 1:03 am

  • Quote

Post by DualCpuUser » Sat Dec 30, 2006 6:01 am

Core 2 is for Core 2 Duo (Intel), Nocona was for the 31 stage version of the Pent 4 (D) versions if my memory servs.

Core2 was and is only in gcc 4.3. It did not get into 4.2, but -march=generic{32|64} did. I think it was 4.2 and not 4.1.X

I have a patch for 4.1.1 which works (I think) that adds the generic CPU timings.
-Ron
Top
sonicbhoc
Veteran
Veteran
User avatar
Posts: 1805
Joined: Mon Oct 24, 2005 7:52 pm
Location: In front of the computer screen
Contact:
Contact sonicbhoc
Website

  • Quote

Post by sonicbhoc » Sat Dec 30, 2006 2:03 pm

remix wrote:stage3, then emerge configure and compile your own kernel, change your cflags, and re-emerge system and world ?
That's how I do it, but I usually copy over my make.conf, remove X and tk from my use flags, emerge -e system and emerge -e world before I do anything else. After that I do the whole kernel thing and get a basic system up, reboot, add X and tk back to my flags, emerge xorg-x11 and then emerge the packages I want.

Isn't GCC 4.3 very experimental and unsafe right now? Just wondering. I didn't think it was ready for use yet...

Guess I'm behind the times again. :lol:

In any event, would there be any point in someone using a PentiumIII computer upgrading to GCC 4.3 other than saying "hey guyz I have the latest version I'm 1337 too lololo"?
I'm too lazy to keep this stupid signature up to date, so here's something more interesting:
My friend Hetdegon can draw if you ask me.
Now using PClinuxOS on my laptop and Gentoo on my desktop and new laptop.
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sat Dec 30, 2006 7:01 pm

when I try to compile libstdc++-v3 I get the following in the middle of compilation:

Code: Select all

make[2]: Leaving directory `/var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/gcc'
make[1]: Leaving directory `/var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/gcc'
Configuring in i686-pc-linux-gnu/libstdc++-v3
creating cache ../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking for Cygwin environment... no
checking for mingw32 environment... no
checking for gawk... gawk
checking whether ln -s works... yes
checking for gcc...  /var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/gcc/xgcc -B/var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/gcc/ -B/usr/i686-pc-linux-gnu/bin/ -B/usr/i686-pc-linux-gnu/lib/ -isystem /usr/i686-pc-linux-gnu/include
checking whether we are using GNU C... yes
checking whether  /var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/gcc/xgcc -B/var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/gcc/ -B/usr/i686-pc-linux-gnu/bin/ -B/usr/i686-pc-linux-gnu/lib/ -isystem /usr/i686-pc-linux-gnu/include accepts -g... yes
checking for c++...  /var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/gcc/xgcc -shared-libgcc -B/var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/gcc/ -nostdinc++  -L/var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/i686-pc-linux-gnu/libstdc++-v3/src -L/var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/usr/i686-pc-linux-gnu/bin/ -B/usr/i686-pc-linux-gnu/lib/ -isystem /usr/i686-pc-linux-gnu/include
checking whether we are using GNU C++... yes
checking whether  /var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/gcc/xgcc -shared-libgcc -B/var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/gcc/ -nostdinc++  -L/var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/i686-pc-linux-gnu/libstdc++-v3/src -L/var/tmp/portage/sys-libs/libstdc++-v3-3.3.6/work/build/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/usr/i686-pc-linux-gnu/bin/ -B/usr/i686-pc-linux-gnu/lib/ -isystem /usr/i686-pc-linux-gnu/include accepts -g... yes
checking for GCC version number... 3.3.6
checking for strerror in -lcposix... no
checking for as... as
checking for ar... ar
checking for ranlib... ranlib
checking for a BSD compatible install... /bin/install -c
checking whether to enable maintainer-specific portions of Makefiles... no
CPU config directory is cpu/i486
OS config directory is os/gnu-linux
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... found
checking for ld used by GCC... ld
checking if the linker (ld) is GNU ld... yes
checking for ld option to reload object files... -r
checking for BSD-compatible nm... nm
checking how to recognise dependant libraries... pass_all
checking for object suffix... configure: error: installation or configuration problem; compiler does not work
make: *** [configure-target-libstdc++-v3] Error 1

!!! ERROR: sys-libs/libstdc++-v3-3.3.6 failed.
Call stack:
  ebuild.sh, line 1603:   Called dyn_compile
  ebuild.sh, line 961:   Called src_compile
  libstdc++-v3-3.3.6.ebuild, line 233:   Called die

!!! (no error message)
!!! If you need support, post the topmost build error, and the call stack if relevant.
how did you solve that ?

update:

just wanted to say that I fixed this some time ago by commenting out some freaking cflags :wink:

Happy New Year @ all, 1 more hour to go from now on :P
Last edited by kernelOfTruth on Sun Dec 31, 2006 10:01 pm, edited 2 times in total.
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sat Dec 30, 2006 7:03 pm

sonicbhoc wrote: In any event, would there be any point in someone using a PentiumIII computer upgrading to GCC 4.3 other than saying "hey guyz I have the latest version I'm 1337 too lololo"?
I would stick to gcc 4.2, gcc 4.3 at the moment only really benefits to core2 users (new architecture)
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
Gentree
Watchman
Watchman
User avatar
Posts: 5350
Joined: Tue Jul 01, 2003 12:51 am
Location: France, Old Europe

  • Quote

Post by Gentree » Mon Jan 01, 2007 11:19 am

well one reason may be gfortran which seems to be getting attention it missed when the main grunt was the c compiler. ( dont forget neither of the c's in gcc refer to the c language!)

That may be of limitted use to most ppl , but in the spirit of the question : " is there any reason" , yes that's one. My quick benchmarking has shown considerable performance increases in this area.

8)
Linux, because I'd rather own a free OS than steal one that's not worth paying for.
Gentoo because I'm a masochist
AthlonXP-M on A7N8X. Portage ~x86
Top
Post Reply

64 posts
  • 1
  • 2
  • 3
  • Next

Return to “Unsupported Software”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy