First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 97963
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Gnustep herd <gnustep@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Georgi Georgiev <chutz@gg3.net>
Add CC:
CC:
Remove selected CCs
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 97963 depends on: Show dependency tree
Bug 97963 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)


Not eligible to see or edit group visibility for this bug.






View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2005-07-04 23:48 0000
windowmaker-0.92 fails with some assembler/mmx related error that can be seen
in bug #97872.

This one-liner fixes the problem by disabling MMX on amd64:

--- windowmaker-0.92.0.ebuild   2005-07-05 08:46:33.000000000 +0900
+++ windowmaker-0.92.0.ebuild   2005-07-05 15:13:06.000000000 +0900
@@ -104,6 +104,10 @@
                fi;
        done;

+       # amd64 and mmx don't play nice together (yet)
+       use amd64 && sed -i -e 's!.*ASM_X86.*!!' "${S}/src/config.h"
+
+
        cd ${S}
        emake -j1 || die "windowmaker: make has failed"

------- Comment #1 From Georgi Georgiev 2005-07-05 00:02:34 0000 -------
Might as well change it to delete the lines, as that's what I actually meant
when I first wrote this (I'm not a sed guru)

--- windowmaker-0.92.0.ebuild	2005-07-05 08:46:33.000000000 +0900
+++ windowmaker-0.92.0.ebuild	2005-07-05 15:13:06.000000000 +0900
@@ -104,6 +104,10 @@
 		fi;
 	done;
 
+	# amd64 and mmx don't play nice together (yet)
+	use amd64 && sed -i -e '/ASM_X86/ d' "${S}/src/config.h"
+
+
 	cd ${S}
 	emake -j1 || die "windowmaker: make has failed

------- Comment #2 From Armando Di Cianno (RETIRED) 2005-07-05 00:09:50 0000 -------
fixes in portage -- thanks for the patch!

First Last Prev Next    No search results available      Search page      Enter new bug