public inbox for eclipse@sourceware.org
 help / color / mirror / Atom feed
* RE: eclipse in fedora core 2 test 1
@ 2004-02-17  2:26 David A. Frantz
  2004-02-17 16:09 ` John Healy
  0 siblings, 1 reply; 10+ messages in thread
From: David A. Frantz @ 2004-02-17  2:26 UTC (permalink / raw)
  To: eclipse

A very good question Scott.    I was also under the impression that gcj 
based eclipse was waiting for FC2.   That is a game plan that needs to 
be played out.

Eclipse os one of those Java applications that just cries out for native 
execution.   It would be very interesting to know the status of the 
build as info on progress with the gcj build of eclipse is hard to come buy.

Dave


^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: eclipse in fedora core 2 test 1
  2004-02-17  2:26 eclipse in fedora core 2 test 1 David A. Frantz
@ 2004-02-17 16:09 ` John Healy
  2004-02-17 16:14   ` Paul Nasrat
  0 siblings, 1 reply; 10+ messages in thread
From: John Healy @ 2004-02-17 16:09 UTC (permalink / raw)
  To: David A. Frantz; +Cc: eclipse

On Mon, 2004-02-16 at 21:26, David A. Frantz wrote:
> A very good question Scott.    I was also under the impression that gcj 
> based eclipse was waiting for FC2.   That is a game plan that needs to 
> be played out.
> 
> Eclipse os one of those Java applications that just cries out for native 
> execution.   It would be very interesting to know the status of the 
> build as info on progress with the gcj build of eclipse is hard to come buy.

Eclipse will be made available for FC2 at some point in the near future
but it won't be part of the core.  Stay tuned.

John

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: eclipse in fedora core 2 test 1
  2004-02-17 16:09 ` John Healy
@ 2004-02-17 16:14   ` Paul Nasrat
  2004-02-17 16:57     ` John Healy
                       ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Paul Nasrat @ 2004-02-17 16:14 UTC (permalink / raw)
  To: John Healy; +Cc: David A. Frantz, eclipse

[-- Attachment #1: Type: text/plain, Size: 388 bytes --]

On Tue, Feb 17, 2004 at 11:09:06AM -0500, John Healy wrote:

> Eclipse will be made available for FC2 at some point in the near future
> but it won't be part of the core.  Stay tuned.

Intresting.

Could you give us an idea of which snapshot it would be.  Also the original snapshot will probably be buildable once ant pops out of rawhide with something like the attached I believe

Paul

[-- Attachment #2: eclipse-gcjlib-not-solib.patch --]
[-- Type: text/plain, Size: 4091 bytes --]

--- ./plugins/org.eclipse.core.boot/src/org/eclipse/core/internal/boot/DelegatingURLClassLoader.java.orig	2004-01-06 10:58:32.000000000 +0000
+++ ./plugins/org.eclipse.core.boot/src/org/eclipse/core/internal/boot/DelegatingURLClassLoader.java	2004-01-06 10:59:35.000000000 +0000
@@ -41,7 +41,7 @@
 	// filter table
 	private Hashtable filterTable = new Hashtable();
 
-	// whether any URL is solib:
+	// whether any URL is gcjlib:
 	private boolean anySolibURL = false;
 
 	// development mode class path additions
@@ -271,7 +271,7 @@
 	resourcePath = mungeJarURLs(resourcePath);
 
 	for (int i = 0; i < codePath.length; ++i) {
-		if (codePath[i].getProtocol().equals("solib")) {
+		if (codePath[i].getProtocol().equals("gcjlib")) {
 			anySolibURL = true;
 			break;
 		}
--- ./plugins/org.eclipse.core.boot/src/org/eclipse/core/internal/boot/InternalBootLoader.java.orig	2004-01-06 10:58:32.000000000 +0000
+++ ./plugins/org.eclipse.core.boot/src/org/eclipse/core/internal/boot/InternalBootLoader.java	2004-01-06 10:59:45.000000000 +0000
@@ -376,7 +376,7 @@
 	File soFile = new File(baseDir, System.mapLibraryName(baseName));
 	if (! soFile.exists())
 		return null;
-	return "solib:" + soFile;
+	return "gcjlib:" + soFile;
 }
 
 private static Object[] getPlatformClassLoaderPath() {
--- ./plugins/org.eclipse.core.runtime/src/org/eclipse/core/internal/plugins/PluginDescriptor.java.orig	2004-01-06 10:58:32.000000000 +0000
+++ ./plugins/org.eclipse.core.runtime/src/org/eclipse/core/internal/plugins/PluginDescriptor.java	2004-01-06 11:00:00.000000000 +0000
@@ -52,7 +52,7 @@
 
 	// If this class was loaded from a shared library, then try to
 	// load other plugins as shared objects.
-	private static final boolean canUseSolib = PluginDescriptor.class.getProtectionDomain().getCodeSource().getLocation().getProtocol().equals("solib");
+	private static final boolean canUseSolib = PluginDescriptor.class.getProtectionDomain().getCodeSource().getLocation().getProtocol().equals("gcjlib");
 
 	// Places to look for library files 
 	private static String[] WS_JAR_VARIANTS = buildWSVariants();
--- ./plugins/org.eclipse.jdt.core/Makefile.orig	2004-01-06 11:01:20.230845328 +0000
+++ ./plugins/org.eclipse.jdt.core/Makefile	2004-01-06 09:56:54.000000000 +0000
@@ -302,7 +302,7 @@
 	$(GCJ) -c $(XGCJFLAGS) --resource $(shell echo $< | sed -e 's,^[^/]*/,,') -o $@ $<
 
 $(LIBRARY): $(OBJECTS)
-	$(GCJ) -shared $(XGCJFLAGS) -o $(LIBRARY) $(OBJECTS) -l-org-apache-tools-1.5.2
+	$(GCJ) -shared $(XGCJFLAGS) -o $(LIBRARY) $(OBJECTS) -l-org-apache-tools-ant-1.5.2
 
 clean:
 	-rm -rf $(OBJECTS) $(LIBRARY)
--- ./plugins/org.eclipse.platform/src/org/eclipse/core/launcher/Main.java.orig	2004-01-06 10:58:32.000000000 +0000
+++ ./plugins/org.eclipse.platform/src/org/eclipse/core/launcher/Main.java	2004-01-06 11:00:23.000000000 +0000
@@ -397,10 +397,10 @@
 		url = null;
 		if ("file".equals(base.getProtocol())) {
 			URL	self = getClass().getProtectionDomain().getCodeSource().getLocation();
-			if (self.getProtocol().equals("solib")) {
+			if (self.getProtocol().equals("gcjlib")) {
 				File so = new File(base.getFile(), BOOTSO);
 				if (so.exists())
-					url = new URL("solib", "", so.toString());
+					url = new URL("gcjlib", "", so.toString());
 			}
 		}
 		if (url == null)
@@ -868,7 +868,7 @@
 	String path = decode(url.getFile());
 	path = new File(path).getAbsolutePath().replace(File.separatorChar,'/');
 	String protocol = url.getProtocol();
-	if (protocol.equals("solib")) {
+	if (protocol.equals("gcjlib")) {
 		path = path.substring(0, path.lastIndexOf("/")+1); //$NON-NLS-1$
 		protocol = "file";
 	} else if (path.endsWith(".jar")) //$NON-NLS-1$
--- ./gcjlauncher.java.orig	2004-01-06 10:58:32.000000000 +0000
+++ ./gcjlauncher.java	2004-01-06 10:58:56.000000000 +0000
@@ -75,7 +75,7 @@
 
 	String className = args[i++];
 
-	URL startupURL = new URL("solib", "", startup_so.toString());
+	URL startupURL = new URL("gcjlib", "", startup_so.toString());
 	URLClassLoader loader = new URLClassLoader(new URL[] { startupURL });
 
 	String[] rest = new String[args.length - i];

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: eclipse in fedora core 2 test 1
  2004-02-17 16:14   ` Paul Nasrat
@ 2004-02-17 16:57     ` John Healy
  2004-02-17 17:09     ` Jeff Duska
  2004-02-17 20:46     ` Tom Tromey
  2 siblings, 0 replies; 10+ messages in thread
From: John Healy @ 2004-02-17 16:57 UTC (permalink / raw)
  To: Paul Nasrat; +Cc: David A. Frantz, eclipse

> Could you give us an idea of which snapshot it would be.  

It will be 2.1.2 based.

John

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: eclipse in fedora core 2 test 1
  2004-02-17 16:14   ` Paul Nasrat
  2004-02-17 16:57     ` John Healy
@ 2004-02-17 17:09     ` Jeff Duska
  2004-02-17 17:21       ` Jeremy Handcock
                         ` (2 more replies)
  2004-02-17 20:46     ` Tom Tromey
  2 siblings, 3 replies; 10+ messages in thread
From: Jeff Duska @ 2004-02-17 17:09 UTC (permalink / raw)
  To: eclipse

I'm pretty sure that native version of Eclipse is suppose to be included 
in the RedHat Enterprise Edition 3. I haven't been able to find anything 
about this on the website. I like to request that my system group 
install it on our development servers, but I not sure where I can point 
them to installation instructions.

Can any give me some pointers?

Thanks,

Jeff

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: eclipse in fedora core 2 test 1
  2004-02-17 17:09     ` Jeff Duska
@ 2004-02-17 17:21       ` Jeremy Handcock
  2004-02-17 18:38       ` Jeff Sturm
  2004-02-17 20:22       ` Karen Bennet
  2 siblings, 0 replies; 10+ messages in thread
From: Jeremy Handcock @ 2004-02-17 17:21 UTC (permalink / raw)
  To: Jeff Duska; +Cc: eclipse

Hi Jeff,

On Tue, Feb 17, 2004 at 12:09:15PM -0500, Jeff Duska wrote:
> I'm pretty sure that native version of Eclipse is suppose to be included 
> in the RedHat Enterprise Edition 3. I haven't been able to find anything 
> about this on the website. I like to request that my system group 
> install it on our development servers, but I not sure where I can point 
> them to installation instructions.
> 
> Can any give me some pointers?

Yes, the native version of Eclipse is available with Red Hat Enterprise
Linux 3.  It is available through Red Hat Network (RHN) on the channel
rhel-i386-<os-version>-3-devsuite.  For example, if you have Red Hat
Enterprise Linux 3 WS, subscribe to the rhel-i386-ws-3-devsuite channel 
through RHN.

Hope that helps.

Jeremy

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: eclipse in fedora core 2 test 1
  2004-02-17 17:09     ` Jeff Duska
  2004-02-17 17:21       ` Jeremy Handcock
@ 2004-02-17 18:38       ` Jeff Sturm
  2004-02-17 20:22       ` Karen Bennet
  2 siblings, 0 replies; 10+ messages in thread
From: Jeff Sturm @ 2004-02-17 18:38 UTC (permalink / raw)
  To: Jeff Duska; +Cc: eclipse

On Tue, 17 Feb 2004, Jeff Duska wrote:
> I'm pretty sure that native version of Eclipse is suppose to be included
> in the RedHat Enterprise Edition 3. I haven't been able to find anything
> about this on the website. I like to request that my system group
> install it on our development servers, but I not sure where I can point
> them to installation instructions.

Yes it's there, in the Red Hat Developer Suite channel.  I haven't tried
it on my RHEL machines since they have no graphics console.  However the
Application Server channel is more interesting...

Jeff

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: eclipse in fedora core 2 test 1
  2004-02-17 17:09     ` Jeff Duska
  2004-02-17 17:21       ` Jeremy Handcock
  2004-02-17 18:38       ` Jeff Sturm
@ 2004-02-17 20:22       ` Karen Bennet
  2 siblings, 0 replies; 10+ messages in thread
From: Karen Bennet @ 2004-02-17 20:22 UTC (permalink / raw)
  To: Jeff Duska; +Cc: eclipse

Jeff Duska wrote:

> I'm pretty sure that native version of Eclipse is suppose to be included
> in the RedHat Enterprise Edition 3. I haven't been able to find anything
> about this on the website. I like to request that my system group
> install it on our development servers, but I not sure where I can point
> them to installation instructions.
>



>
> Can any give me some pointers?

http://www.redhat.com/software/rha/developer/

>
>
> Thanks,
>
> Jeff

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: eclipse in fedora core 2 test 1
  2004-02-17 16:14   ` Paul Nasrat
  2004-02-17 16:57     ` John Healy
  2004-02-17 17:09     ` Jeff Duska
@ 2004-02-17 20:46     ` Tom Tromey
  2 siblings, 0 replies; 10+ messages in thread
From: Tom Tromey @ 2004-02-17 20:46 UTC (permalink / raw)
  To: Paul Nasrat; +Cc: John Healy, David A. Frantz, eclipse

>>>>> "Paul" == Paul Nasrat <pauln@truemesh.com> writes:

Paul> Could you give us an idea of which snapshot it would be.  Also
Paul> the original snapshot will probably be buildable once ant pops
Paul> out of rawhide with something like the attached I believe

Yeah, I think that would probably work.  You'd also have to tweak the
build to run gcj 3.4 instead of "gcj-ssa".

Tom

^ permalink raw reply	[flat|nested] 10+ messages in thread

* eclipse in fedora core 2 test 1
@ 2004-02-15 20:11 J. Scott Amort
  0 siblings, 0 replies; 10+ messages in thread
From: J. Scott Amort @ 2004-02-15 20:11 UTC (permalink / raw)
  To: eclipse

Hi,

I recall hearing that gcj eclipse would be included in fedora core 2,
but don't see it on the test1 cd's.  Is there a newer version than the
eclipse-2.1.0-22 that is currently available?  Will it make it into
rawhide soon?  Thanks for any info.

Cheers,

Scott

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2004-02-17 20:46 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-02-17  2:26 eclipse in fedora core 2 test 1 David A. Frantz
2004-02-17 16:09 ` John Healy
2004-02-17 16:14   ` Paul Nasrat
2004-02-17 16:57     ` John Healy
2004-02-17 17:09     ` Jeff Duska
2004-02-17 17:21       ` Jeremy Handcock
2004-02-17 18:38       ` Jeff Sturm
2004-02-17 20:22       ` Karen Bennet
2004-02-17 20:46     ` Tom Tromey
  -- strict thread matches above, loose matches on Subject: below --
2004-02-15 20:11 J. Scott Amort

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).