Difference between revisions of "User:Spooky"
 (script)  | 
				|||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| − | I'm a student at ETH Zürich and I'm working on the Vision2 Cocoa/Carbon port.  | + | I'm a student at ETH Zürich and I'm working on the Vision2 [[Cocoa_for_EiffelVision2|Cocoa/Carbon port]].  | 
| + | <pre>  | ||
Mail : roederja AT student DOT ethz DOT ch  | Mail : roederja AT student DOT ethz DOT ch  | ||
Jabber : spooky@amessage.de  | Jabber : spooky@amessage.de  | ||
ICQ : 29794099  | ICQ : 29794099  | ||
Skype : spooky23  | Skype : spooky23  | ||
| + | </pre>  | ||
| + | |||
| + | I've created a [[EiffelOnMac|binary package]] for MacOS X PowerPC  | ||
| + | |||
| + | This is a little script I use to build a fresh EiffelStudio binary. I do SVN updates by hand.  | ||
| + | <pre>  | ||
| + | #!/bin/bash  | ||
| + | |||
| + | cd $EIFFEL_SRC/C  | ||
| + | make clobber  | ||
| + | ./quick_configure  | ||
| + | |||
| + | cd $EIFFEL_SRC/library/event/Clib  | ||
| + | finish_freezing -library  | ||
| + | cd $EIFFEL_SRC/library/net/Clib  | ||
| + | finish_freezing -library  | ||
| + | cd $EIFFEL_SRC/library/vision2/Clib  | ||
| + | finish_freezing -library  | ||
| + | cd $EIFFEL_SRC/library/vision2/implementation/gtk/Clib  | ||
| + | finish_freezing -library  | ||
| + | |||
| + | cd $EIFFEL_SRC/Eiffel/Ace  | ||
| + | ec -config ec.acex -target bench -finalize -c_compile  | ||
| + | </pre>  | ||
Latest revision as of 12:28, 13 May 2006
I'm a student at ETH Zürich and I'm working on the Vision2 Cocoa/Carbon port.
Mail : roederja AT student DOT ethz DOT ch Jabber : spooky@amessage.de ICQ : 29794099 Skype : spooky23
I've created a binary package for MacOS X PowerPC
This is a little script I use to build a fresh EiffelStudio binary. I do SVN updates by hand.
#!/bin/bash cd $EIFFEL_SRC/C make clobber ./quick_configure cd $EIFFEL_SRC/library/event/Clib finish_freezing -library cd $EIFFEL_SRC/library/net/Clib finish_freezing -library cd $EIFFEL_SRC/library/vision2/Clib finish_freezing -library cd $EIFFEL_SRC/library/vision2/implementation/gtk/Clib finish_freezing -library cd $EIFFEL_SRC/Eiffel/Ace ec -config ec.acex -target bench -finalize -c_compile

