• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Eclipse and MS JVM

 
Ranch Hand
Posts: 95
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For some issue in Java I need Eclipse to identify Microsoft jvm because that application can only be run with Microsoft JVM.

I downloaded jvm executable from net and installed .

But I don�t know what to do next I could not understand what the name of this JRE is and its installed location in the system , only

Thing that I can see is in C:\WINNT\System32\jview.exe is there

Tell me where the remaining is installed.(like bin and rt.jar ) and is it needed to set these things in classpath
 
Ranch Hand
Posts: 5093
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The compiler is installed only with (and inside) Visual J++, which is end of line and no longer on sale or supported.

Follow the advise on Microsoft's website and port the application to the Sun JVM.
 
Ranch Hand
Posts: 1365
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can get a .zip with all the classes the MS JVM uses by running "clspack -auto" at the command line. The output will be classes.zip will be in one of these directories, depending on your OS version:

C:\Windows\java\classes
C:\WINNT\System32\java\classes

This information comes from Stephen Gilbert's guide on using Jikes and the Microsoft VM for development.
 
Jeroen Wenting
Ranch Hand
Posts: 5093
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
that won't help him, as Eclipse won't use the Microsoft compiler which is a 1.1.6 compiler.
Eclipse uses a 1.4.1 compiler (maybe 1.4.2 in current releases) which can sadly not be swapped out for a different version (my one major gripe with Eclipse actually).

So he needs a commandline 1.1.6 compiler. Maybe the Sun compiler will suffice if the required libraries can indeed be extracted, maybe not.
 
Space seems cool in the movies, but once you get out there, it is super boring. Now for a fascinating tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic