Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
64 bit Linux support
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 44 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
John Yodsnukis  
View profile  
(3 users)  More options Jul 16 2007, 7:11 pm
From: "John Yodsnukis" <john.yodsnu...@gmail.com>
Date: Mon, 16 Jul 2007 19:11:53 -0400
Local: Mon, Jul 16 2007 7:11 pm
Subject: Re: 64 bit Linux support
Here's a patch that allowed me to compile from svn source under 64 bit Linux.

Index: gears/tools/config.mk
===================================================================
--- gears/tools/config.mk       (revision 142)
+++ gears/tools/config.mk       (working copy)
@@ -40,11 +40,13 @@
 #   OSX builds will override this.
 #   Other platforms just need a value defined.
 ARCH = i386
+ARCH = x86_64

 # Set default build mode
 #   dbg = debug build
 #   opt = release build
 MODE = dbg
+MODE = opt

 # $(shell ...) statements need to be different on Win32 (%% vs %).
@@ -95,6 +97,7 @@
 COMPILE_FLAGS_dbg = -g -O0
 COMPILE_FLAGS_opt = -O2
 COMPILE_FLAGS = -c -o $@ -fPIC -Wall -Werror $(COMPILE_FLAGS_$(MODE))
+COMPILE_FLAGS = -c -o $@ -fPIC -Wall         $(COMPILE_FLAGS_$(MODE))

 # NS_LITERAL_STRING does not work properly without this compiler option
 COMPILE_FLAGS += -fshort-wchar
Index: gears/localserver/firefox/async_task_ff.cc
===================================================================
--- gears/localserver/firefox/async_task_ff.cc  (revision 142)
+++ gears/localserver/firefox/async_task_ff.cc  (working copy)
@@ -441,7 +441,8 @@
       Abort();
       break;
     default:
-      OnListenerEvent(msg_code, reinterpret_cast<int>(msg_param));
+//    OnListenerEvent(msg_code, reinterpret_cast<int>(msg_param));
+      OnListenerEvent(msg_code, reinterpret_cast<long>(msg_param));
       break;
   }
 }
Index: gears/third_party/gecko_sdk/1.8/linux/lib/libxpcomglue_s.a
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: gears/third_party/gecko_sdk/1.8/linux/lib/libnspr4.so
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: gears/third_party/gecko_sdk/1.8/linux/lib/libxpcom.so
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: gears/third_party/gecko_sdk/1.8/linux/bin/xpidl
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: gears/third_party/gecko_sdk/1.8/linux/bin/xpt_dump
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: gears/third_party/gecko_sdk/1.8/linux/bin/regxpcom
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: gears/third_party/gecko_sdk/1.8/linux/bin/xpt_link
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Prince  
View profile  
 More options Jul 16 2007, 7:25 pm
From: "Chris Prince" <cpri...@google.com>
Date: Mon, 16 Jul 2007 16:25:29 -0700
Local: Mon, Jul 16 2007 7:25 pm
Subject: Re: [google-gears] Re: 64 bit Linux support
Very cool, John.  So if I'm reading this right, "x86_64" was the key
change to the source code?  The other changes seem to be related to
typecast warnings -- is that right?

Did the binaries also change, or just a flag on the binaries?  I can't
tell from the diff.

On 7/16/07, John Yodsnukis <john.yodsnu...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
JohnY  
View profile  
 More options Jul 16 2007, 10:01 pm
From: JohnY <John.Yodsnu...@gmail.com>
Date: Tue, 17 Jul 2007 02:01:28 -0000
Local: Mon, Jul 16 2007 10:01 pm
Subject: Re: 64 bit Linux support
The COMPILE_FLAGS and the "reinterpret_cast<long>" were both show
stoppers for me at compile time.

I needed to copy the 64bit binaries from a manual firefox build to
replace the 32bit ones in CVS.

So far it's working fine with Google Reader.

On Jul 16, 7:25 pm, "Chris Prince" <cpri...@google.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John Yodsnukis  
View profile  
 More options Dec 26 2007, 11:14 am
From: "John Yodsnukis" <john.yodsnu...@gmail.com>
Date: Wed, 26 Dec 2007 11:14:50 -0500
Local: Wed, Dec 26 2007 11:14 am
Subject: Re: 64 bit Linux support
On Dec 25, 2007 9:37 PM, sathiya <getsath...@gmail.com> wrote:

> I have modified all three files.
> But when compile the code, i received the following errors,
>  /usr/bin/ld: skipping incompatible third_party/gecko_1.8/linux/
> gecko_sdk/lib/libxpcom.so when searching for -lxpcom
> /usr/bin/ld: cannot find -lxpcom
> collect2: ld returned 1 exit status
> make[1]: *** [bin-opt/linux-x86_64/ff/libgears.so] Error 1
> make: *** [default] Error 2

<snip>

You must replace the below files with 64bit versions.  You can
probably find them in /usr/lib/...
or in the 64 bit gecko sdk.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sathiya  
View profile  
 More options Dec 26 2007, 9:04 pm
From: sathiya <getsath...@gmail.com>
Date: Wed, 26 Dec 2007 18:04:08 -0800 (PST)
Local: Wed, Dec 26 2007 9:04 pm
Subject: Re: 64 bit Linux support

 Thank you replying .
 I have replace the following files under lib,
 libplc4.so    libxpcom.so
 libnspr4.so  libplds4.so

 but now i received different error,
/usr/bin/ld: skipping incompatible third_party/gecko_1.8/linux/
gecko_sdk/lib/libxpcomglue_s.a when searching for -lxpcomglue_s
/usr/bin/ld: cannot find -lxpcomglue_s
collect2: ld returned 1 exit status
make[1]: *** [bin-opt/linux-x86_64/ff/libgears.so] Error 1
make: *** [default] Error 2

On Dec 27, 12:14 am, "John Yodsnukis" <john.yodsnu...@gmail.com>
wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
JohnY  
View profile  
 More options Dec 29 2007, 9:27 am
From: JohnY <John.Yodsnu...@gmail.com>
Date: Sat, 29 Dec 2007 06:27:25 -0800 (PST)
Local: Sat, Dec 29 2007 9:27 am
Subject: Re: 64 bit Linux support
On Dec 26, 9:04 pm, sathiya <getsath...@gmail.com> wrote:

>  Thank you replying .
>  I have replace the following files under lib,
>  libplc4.so    libxpcom.so
>  libnspr4.so  libplds4.so

No, you must replace them in the gears build/source tree.  And you
don't have all the right files.

You need these 7 files replaced with 64 bit gecko sdk versions:

gears/third_party/gecko_sdk/1.8/linux/lib/libxpcomglue_s.a
gears/third_party/gecko_sdk/1.8/linux/lib/libnspr4.so
gears/third_party/gecko_sdk/1.8/linux/lib/libxpcom.so
gears/third_party/gecko_sdk/1.8/linux/bin/xpidl
gears/third_party/gecko_sdk/1.8/linux/bin/xpt_dump
gears/third_party/gecko_sdk/1.8/linux/bin/regxpcom
gears/third_party/gecko_sdk/1.8/linux/bin/xpt_link


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sathiya  
View profile  
 More options Jan 8 2008, 6:02 am
From: sathiya <getsath...@gmail.com>
Date: Tue, 8 Jan 2008 03:02:43 -0800 (PST)
Local: Tues, Jan 8 2008 6:02 am
Subject: Re: 64 bit Linux support
i donot have those files in my system, could you tell where can i
download ?

On Dec 29 2007, 7:27 pm, JohnY <John.Yodsnu...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
JohnY  
View profile  
 More options Jan 8 2008, 6:55 pm
From: JohnY <John.Yodsnu...@gmail.com>
Date: Tue, 8 Jan 2008 15:55:07 -0800 (PST)
Local: Tues, Jan 8 2008 6:55 pm
Subject: Re: 64 bit Linux support
Check your distributions packages.   On mine they are in the firefox-
dev package.

On Jan 8, 6:02 am, sathiya <getsath...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Scott Wolchok  
View profile  
 More options Mar 6 2008, 2:06 am
From: Scott Wolchok <evilspork...@gmail.com>
Date: Wed, 5 Mar 2008 23:06:05 -0800 (PST)
Local: Thurs, Mar 6 2008 2:06 am
Subject: Re: 64 bit Linux support
Here is a better (IMO) patch.

Pros:
* Cross-platform approach to 64-bit maintainability.
* No penalty on 32-bit architectures.
* Enables an easy convention going forward: use ptrasint_t as an
  integral type that can hold a pointer.

Cons:
* Introduces a build dependency on Boost. Developers must either
  install Boost headers, or we must "deboostify" boost/integer.hpp as
  was done with scoped_ptr.
* Patch does not fix base/firefox/install.rdf.m4 to output
Linux_x86_64-gcc3 as the target platform (I don't know m4)

The following patch links against Debian's libxpcomglue.so because
libxpcomglue_s does not seem to be available in Debian testing
(lenny). I simply installed libxul-dev instead of building firefox by
hand.

Index: localserver/firefox/async_task_ff.cc
===================================================================
--- localserver/firefox/async_task_ff.cc        (revision 1121)
+++ localserver/firefox/async_task_ff.cc        (working copy)
@@ -469,7 +469,9 @@
       break;
     default:
       assert(IsListenerThread());
-      OnListenerEvent(msg_code, reinterpret_cast<int>(msg_param));
+      //technically can't reinterpret_cast to int if sizeof(int>) <
+      //sizeof(void*), but we are really sure this is an int.
+      OnListenerEvent(msg_code, static_cast<int>(
+
reinterpret_cast<ptrasint_t>(msg_param)));
       break;
   }
 }
Index: tools/config.mk
===================================================================
--- tools/config.mk     (revision 1121)
+++ tools/config.mk     (working copy)
@@ -49,7 +49,7 @@
 # Set default build mode
 #   dbg = debug build
 #   opt = release build
-MODE = dbg
+MODE = opt

 # Set default OS architecture
 #   OSX builds will override this value (see rules.mk).
@@ -57,7 +57,7 @@
 ifeq ($(OS),wince)
   ARCH = arm
 else
-  ARCH = i386
+  ARCH = x86_64
 endif

 # $(shell ...) statements need to be different on Windows (%% vs %).
@@ -124,7 +124,7 @@

 COMPILE_FLAGS_dbg = -g -O0
 COMPILE_FLAGS_opt = -O2
-COMPILE_FLAGS = -c -o $@ -fPIC -fmessage-length=0 -Wall -Werror $
(COMPILE_FLAGS_$(MODE))
+COMPILE_FLAGS = -c -o $@ -fPIC -fmessage-length=0 -Wall $
(COMPILE_FLAGS_$(MODE))
 # NS_LITERAL_STRING does not work properly without this compiler
option
 COMPILE_FLAGS += -fshort-wchar

@@ -142,7 +142,7 @@

 GECKO_SDK = third_party/gecko_1.8/linux

-FF_LIBS = -L $(GECKO_SDK)/gecko_sdk/bin -L $(GECKO_SDK)/gecko_sdk/lib
-lxpcom -lxpcomglue_s -lnspr4
+FF_LIBS = -L $(GECKO_SDK)/gecko_sdk/bin -L $(GECKO_SDK)/gecko_sdk/lib
-lxpcom -lxpcomglue -lnspr4
 endif

######################################################################
Index: base/common/int_types.h
===================================================================
--- base/common/int_types.h     (revision 1121)
+++ base/common/int_types.h     (working copy)
@@ -26,6 +26,15 @@
 #ifndef GEARS_BASE_COMMON_INT_TYPES_H__
 #define GEARS_BASE_COMMON_INT_TYPES_H__

+#include <boost/integer.hpp>
+#include <climits>
+
+//intptr_t would clash with C99 stdint.h if it got included somehow.
+//CHAR_BIT is bits/char, and void * must be big enough to hold all
+//pointers to objects.
+typedef boost::int_t<CHAR_BIT * sizeof(void*)>::fast ptrasint_t;
+
+
 #ifdef _MSC_VER
 #include <float.h>  // for _isnan() on VC++
 #define isnan(x) _isnan(x)  // VC++ uses _isnan() instead of isnan()
Index: base/common/js_runner_ff_marshaling.cc
===================================================================
--- base/common/js_runner_ff_marshaling.cc      (revision 1121)
+++ base/common/js_runner_ff_marshaling.cc      (working copy)
@@ -553,7 +553,7 @@
   //
   // We must use PRIVATE_TO_JSVAL (only works on pointers!) to
prevent the
   // garbage collector from touching any private data stored in JS
'slots'.
-  assert(0 == (0x01 & reinterpret_cast<int>(function_data.get())));
+  assert(0 == (0x01 &
reinterpret_cast<ptrasint_t>(function_data.get())));
   function_wrappers_.push_back(
       linked_ptr<JsWrapperDataForFunction>(function_data.get()));
   jsval pointer_jsval =
PRIVATE_TO_JSVAL((jsval)function_data.release());


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dennis  
View profile  
 More options Mar 6 2008, 3:47 am
From: Dennis <D.G.Jan...@googlemail.com>
Date: Thu, 6 Mar 2008 00:47:26 -0800 (PST)
Local: Thurs, Mar 6 2008 3:47 am
Subject: Re: 64 bit Linux support
Could someone please post the compiled plugin?

That would be great!

Oh and please send me an email, I'm not on the list.

Thanks!
Dennis


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Scott Wolchok  
View profile  
(2 users)  More options Mar 6 2008, 1:30 pm
From: Scott Wolchok <evilspork...@gmail.com>
Date: Thu, 6 Mar 2008 10:30:16 -0800 (PST)
Local: Thurs, Mar 6 2008 1:30 pm
Subject: Re: 64 bit Linux support
I posted my build from last night at:
http://www-personal.umich.edu/~swolchok/gears/gears-linux-opt-0.3.8.0...

Please note that you shouldn't install this unless you trust me, some
random guy on the Internet, as the XPI contains native code. Also,
this is SVN rev 1121 right now, though I'll probably update to 1127
later today. If I decide to post builds regularly, a web page
detailing what's going on will appear at http://www-personal.umich.edu/~swolchok/gears/

On Mar 6, 3:47 am, Dennis <D.G.Jan...@googlemail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Brad Neuberg  
View profile  
 More options Mar 7 2008, 8:04 pm
From: "Brad Neuberg" <bradneub...@google.com>
Date: Fri, 7 Mar 2008 17:04:53 -0800
Local: Fri, Mar 7 2008 8:04 pm
Subject: Re: [google-gears] Re: 64 bit Linux support

Hi Scott; thanks for posting this. The best place for patches is actually
the google-gears-eng list where the Gears plugin is developed by folks. That
list is here:

http://groups.google.com/group/google-gears-eng/

On Wed, Mar 5, 2008 at 11:06 PM, Scott Wolchok <evilspork...@gmail.com>
wrote:

--
Best,
 Brad

 bradneub...@google.com
 http://codinginparadise.org


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Prince  
View profile  
 More options Mar 7 2008, 8:09 pm
From: "Chris Prince" <cpri...@google.com>
Date: Fri, 7 Mar 2008 17:09:12 -0800
Local: Fri, Mar 7 2008 8:09 pm
Subject: Re: [google-gears] Re: 64 bit Linux support
No need to re-post, we got it. :)

We are really excited to have a clean patch that enables 64-bit
support.  Right now the eng team is pushing to stabilize the code and
push a new release, but I hope we can take another look at the patch
after that.

Thanks, Scott!
--Chris


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Aaron Boodman  
View profile  
 More options Mar 7 2008, 8:10 pm
From: "Aaron Boodman" <a...@google.com>
Date: Fri, 7 Mar 2008 17:10:21 -0800
Local: Fri, Mar 7 2008 8:10 pm
Subject: Re: [google-gears] Re: 64 bit Linux support
If there's not a bug already open for this, you could open one and add
the patch there. That would be the best shot to make sure it doesn't
get forgotten.

- a


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Prince  
View profile  
 More options Mar 7 2008, 8:10 pm
From: "Chris Prince" <cpri...@google.com>
Date: Fri, 7 Mar 2008 17:10:57 -0800
Local: Fri, Mar 7 2008 8:10 pm
Subject: Re: [google-gears] Re: 64 bit Linux support
Yep, I'm already on it.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John Ripley  
View profile  
 More options Mar 10 2008, 7:06 am
From: "John Ripley" <jrip...@google.com>
Date: Mon, 10 Mar 2008 11:06:43 +0000
Local: Mon, Mar 10 2008 7:06 am
Subject: Re: [google-gears] Re: 64 bit Linux support
2008/3/6 Scott Wolchok <evilspork...@gmail.com>:

It strikes me that this gains a dependency on the boost library just
to compile 1 typedef and 1 assert. Is this preferable to just using a
#define or two?

John.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Scott Wolchok  
View profile  
 More options Mar 11 2008, 4:02 pm
From: Scott Wolchok <evilspork...@gmail.com>
Date: Tue, 11 Mar 2008 13:02:52 -0700 (PDT)
Local: Tues, Mar 11 2008 4:02 pm
Subject: Re: 64 bit Linux support

On Mar 10, 7:06 am, "John Ripley" <jrip...@google.com> wrote:

The rationale is that getting this to work across platforms and, more
importantly, across compilers is hard and requires us to keep up with
a variety of compilers or limit the set of usable compilers
artifically. To lose the Boost dependency, we would have to duplicate
the effort of finding the best type to use when casting pointers to
integers, and I think it's pretty clear that this is not as simple as

#ifdef 64BIT
typedef long ptrasint_t;
#else
typedef int ptrasint_t;
#endif

It's not this simple because there are no guarantees about the sizes
of int and long relative to pointer sizes, which means that each
version of each compiler is free to change this. Because the project
does not officially support 64-bit Linux, I felt that Boost had the
minimum impact on the build process given my personal goal of support
without commitment to any particular compiler.  Boost is especially to
use on any sane Linux distribution (something like "$PACKAGE_MGR
install libboost-dev" should be sufficient). I freely admit, however,
that I am not familiar with 1) the best way to use third-party
libraries on Windows and 2) Google's process for handling that issue.

It seems like the process is to check libraries into the version
control system. However, I think that Boost determines some system-
specific things during the install process, so you might simply check
a Boost install into your version control system for each officially
supported platform, and then set the include path appropriately
depending on the build system. Unfortunately, Subversion does nothing
to help with the space overhead of this solution.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Fwd: 64 bit Linux support" by Scott Wolchok
Scott Wolchok  
View profile  
(1 user)  More options Jun 14 2008, 11:35 pm
From: "Scott Wolchok" <evilspork...@gmail.com>
Date: Sat, 14 Jun 2008 20:35:51 -0700
Local: Sat, Jun 14 2008 11:35 pm
Subject: Fwd: 64 bit Linux support
From: Scott Wolchok <evilspork...@gmail.com>
Date: Sat, Jun 14, 2008 at 8:33 PM
Subject: Re: 64 bit Linux support
To: Scott Wolchok <evilspork...@gmail.com>

Updated patch has been posted at
http://code.google.com/p/gears/issues/detail?id=335
. Binary is at http://www-personal.umich.edu/~swolchok/gears/gears-linux-opt-0.3.25....
. It passes the unit tests, but other than that I haven't done any
testing.

On Mar 11, 1:02 pm, Scott Wolchok <evilspork...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Brandon Kruger  
View profile  
 More options Jun 15 2008, 4:40 pm
From: Brandon Kruger <bmk...@gmail.com>
Date: Sun, 15 Jun 2008 13:40:09 -0700 (PDT)
Local: Sun, Jun 15 2008 4:40 pm
Subject: Re: Fwd: 64 bit Linux support
It seems your link to the binary is broken.  I look forward to testing
it.  Thank you for your work!

On Jun 14, 11:35 pm, "Scott Wolchok" <evilspork...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ben Lisbakken  
View profile  
 More options Jun 16 2008, 1:31 pm
From: Ben Lisbakken <lisba...@google.com>
Date: Mon, 16 Jun 2008 10:31:38 -0700
Local: Mon, Jun 16 2008 1:31 pm
Subject: Re: [gears-users] Re: Fwd: 64 bit Linux support

It looks like this is the link in his directory:
http://www-personal.umich.edu/~swolchok/gears/gears-linux-opt-0.3.8.0...

-Ben


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Brandon Kruger  
View profile  
 More options Jun 17 2008, 9:52 pm
From: Brandon Kruger <bmk...@gmail.com>
Date: Tue, 17 Jun 2008 18:52:10 -0700 (PDT)
Local: Tues, Jun 17 2008 9:52 pm
Subject: Re: [gears-users] Re: Fwd: 64 bit Linux support
The only file there is an older version that isn't compatible with
FF3.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Scott Wolchok  
View profile  
 More options Jun 18 2008, 12:44 am
From: Scott Wolchok <evilspork...@gmail.com>
Date: Tue, 17 Jun 2008 21:44:47 -0700 (PDT)
Local: Wed, Jun 18 2008 12:44 am
Subject: Re: Fwd: 64 bit Linux support
I've fixed the link. The binary is now actually at
http://www-personal.umich.edu/~swolchok/gears/gears-linux-opt-0.3.25....
. I've upgraded to Firefox 3 just now and the unit tests seem to pass,
so I guess that's good too.

On Jun 17, 6:52 pm, Brandon Kruger <bmk...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ben Lisbakken  
View profile  
 More options Jun 18 2008, 10:53 am
From: Ben Lisbakken <lisba...@google.com>
Date: Wed, 18 Jun 2008 07:53:55 -0700
Local: Wed, Jun 18 2008 10:53 am
Subject: Re: [gears-users] Re: Fwd: 64 bit Linux support

Scott --

Thanks for your work on this!

-Ben

On Tue, Jun 17, 2008 at 9:44 PM, Scott Wolchok <evilspork...@gmail.com>
wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Helio MC Pereira  
View profile  
 More options Jun 18 2008, 11:24 am
From: "Helio MC Pereira" <helio.mc.pere...@gmail.com>
Date: Wed, 18 Jun 2008 16:24:22 +0100
Local: Wed, Jun 18 2008 11:24 am
Subject: Re: [gears-users] Re: Fwd: 64 bit Linux support

Why isn't this 64pkg official in google gears?


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Prince  
View profile  
(3 users)  More options Jun 18 2008, 10:05 pm
From: "Chris Prince" <cpri...@google.com>
Date: Thu, 19 Jun 2008 12:05:15 +1000
Local: Wed, Jun 18 2008 10:05 pm
Subject: Re: [gears-users] Re: Fwd: 64 bit Linux support
There have been a lot of questions about 64-bit Linux support in
Gears, so let me try to answer those questions:

First of all, we don't hate 64-bit users.  Really, we don't!!  In a
perfect world, we would officially support 64-bit Linux, and every
other platform as well.

The problem is simply one of resources.  For the officially supported
platforms, we do a *lot* of testing before every release.  As users
ourselves, we hate poorly tested software.

So adding 64-bit Linux isn't simply a matter of submitting the patch
(which is something we *will* do).  For official support, we would
need to add 64-bit Linux to our test matrix.  And that would be a
non-trivial amount of work.

But all is not lost. :)  This is one of the great things about
open-source projects.  Anybody in the community can build and host
64-bit Linux builds of Gears.  Scott has done this for 0.3.25.0, and
hopefully he or somebody else will do so for future builds of Gears on
64-bit Linux.  I think this is a great way to get 64-bit Linux support
in the short term.

I hope that gives a little more insight into the 64-bit Linux situation.
--Chris

On Thu, Jun 19, 2008 at 1:24 AM, Helio MC Pereira


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 44   Newer >
« Back to Discussions « Newer topic     Older topic »

Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google