|
发表于 2008-10-8 23:29:46
|
显示全部楼层
http://sourceforge.net/tracker/? ... amp;group_id=175748
Followups:
Comments
Date: 2008-09-20 10:43
Sender: mumhero
Thanks. This works for me too.
However, thare is a bug in the SConstruct file, there is no x86_64 in ms.
The following is the new SConstruct file
--- SConstruct 2008-09-20 18:29:58.000000000 +0800
+++ SConstruct.old 2008-09-20 18:40:23.000000000 +0800
@@ -24,7 +24,7 @@
def get_default_abi():
ss = { 'Linux' : 'linux', 'Windows' : 'windows' }
s = ss[system()]
- ms = { 'i686' : 'x86', 'i586' : 'x86', 'i486' : 'x86', 'i386' : 'x86'
, 'x86_64' : 'x86_64'}
+ ms = { 'i686' : 'x86', 'i586' : 'x86', 'i486' : 'x86', 'i386' :
'x86'}
m = ms[machine()]
cs = { 'Linux' : 'gcc3', 'Windows' : 'msvc' }
c = cs[system()]
Date: 2008-09-20 05:53
Sender: nobody
Had the same issue as you, got it solved by compiling the package myself
under arch x86_64.
export GECKO_SDK=/usr/lib/xulrunner-devel-1.9.0.1/
make package |
|