Re: Discuss-gnu-electric Digest, Vol 24, Issue 5
Ming Deng <[email protected]> Fri, 24 Dec 2004 22:52:13 -0500
| Newsgroups | gmane.comp.cad.electric.general |
|---|---|
| Organization | Kaben Research Inc. |
| Message-ID | <[email protected]> |
To make the new 8.01 source code compilable and runnable on my Windows
XP, I have to do some tweaks:
1. In the building environment(Eclipse 3.01), change a property of the
project, i.e. "compliance and classfiles" in "java compiler", to all
"1.4"(for new java assert statement)
2. Comment out "simulation interval" lines in DebugMenus.java.
3. Add double quotes in string variable "command" in Launcher.java
around "-cp" option to avoid spaces in class paths causing problems.
Hope they can help you to save some time. Patches are at the end of the
email(I'm not sure if attachments work in mailing list).
Ming
Index: com/sun/electric/Launcher.java
===================================================================
RCS file: /var/lib/cvs/Electric8/com/sun/electric/Launcher.java,v
retrieving revision 1.1.1.2
retrieving revision 1.1.1.2.2.1
diff -r1.1.1.2 -r1.1.1.2.2.1
116c116
< command += " -cp " + System.getProperty("java.class.path",".");
---
> command += " -cp \"" +
System.getProperty("java.class.path",".") + "\"";
Index: com/sun/electric/tool/user/menus/DebugMenus.java
===================================================================
RCS file:
/var/lib/cvs/Electric8/com/sun/electric/tool/user/menus/DebugMenus.java,v
retrieving revision 1.1.1.2
retrieving revision 1.1.1.2.2.1
diff -r1.1.1.2 -r1.1.1.2.2.1
60c60
< import com.sun.electric.tool.simulation.interval.Diode;
---
> //import com.sun.electric.tool.simulation.interval.Diode;
202,203c202,203
< dimaMenu.addMenuItem("Plot diode", null,
< new ActionListener() { public void
actionPerformed(ActionEvent e) {
Diode.plotDiode(User.getWorkingDirectory() + File.separator +
"diode.raw"); } });
---
> // dimaMenu.addMenuItem("Plot diode", null,
> // new ActionListener() { public void
actionPerformed(ActionEvent e) {
Diode.plotDiode(User.getWorkingDirectory() + File.separator +
"diode.raw"); } });
[email protected] wrote:
>Send Discuss-gnu-electric mailing list submissions to
> [email protected]
>
>To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.gnu.org/mailman/listinfo/discuss-gnu-electric
>or, via email, send a message with subject or body 'help' to
> [email protected]
>
>You can reach the person managing the list at
> [email protected]
>
>When replying, please edit your Subject line so it is more specific
>than "Re: Contents of Discuss-gnu-electric digest..."
>
>
>Today's Topics:
>
> 1. New version of The Electric VLSI Design System (8.01)
> (Steven Rubin)
>
>
>----------------------------------------------------------------------
>
>Message: 1
>Date: Wed, 22 Dec 2004 18:17:45 -0800
>From: Steven Rubin <[email protected]>
>Subject: New version of The Electric VLSI Design System (8.01)
>To: [email protected]
>Cc: [email protected]
>Message-ID: <[email protected]>
>Content-Type: text/plain; charset="us-ascii"; format=flowed
>
>I am pleased to announce that version 8.01 of the Electric VLSI Design
>System is available.
>
>This is a much-improved Java translation, with many more pieces of the old
>C code translated and ready for use.
>
>Visit us at www.staticfreesoft.com for downloads and other products.
>
>As always, the source code is free.
>
>Happy designing!
>
> -Steven Rubin
>
>
>
>
>
>------------------------------
>
>_______________________________________________
>Discuss-gnu-electric mailing list
>[email protected]
>http://lists.gnu.org/mailman/listinfo/discuss-gnu-electric
>
>
>End of Discuss-gnu-electric Digest, Vol 24, Issue 5
>***************************************************
>
>