My first try to get my own vm ends with the following error-message of make: ---------------- Makefile settings ------------------ the structure of my build-system: croquet-sdk 1.0.18 |_ HydraVM |_platforms |_winbuild I gone through the build process with Klaus (Thanks Klaus :-)). I'm on WindowsXP and checked out the svn branche of HydraVM from squeakvm.org. Any suggestions appreciate. TIA Frank
Edelstahlwerke Schmees GmbH
Geschäftsleitung Clemens Schmees Sitz D-01796 Pirna Handelsregister Dresden HRB 54 E-Mail: [hidden email] WEB: www.schmees.com
Diese
E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn
Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten
haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail.
Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht
gestattet. |
2008/8/6 Frank Urbach <[hidden email]>:
> My first try to get my own vm ends with the following error-message of make: > > ---------------- Makefile settings ------------------ > VPATH=./src/vm ../platforms/win32/vm ../platforms/Cross/vm > INCLUDES=-I. -I./src/vm -I../platforms/win32/vm -I../platforms/Cross/vm > -Ic:/dx7 > sdk/include > CFLAGS=-g -mpentium -mwindows -fomit-frame-pointer -funroll-loops > -fschedule-ins > ns2 -O2 > ----------------------------------------------------- > mkdir .\obj\vm > mkdir: cannot create directory `.objvm': File exists > make: *** [obj/vm] Error 1 > > the structure of my build-system: > > croquet-sdk 1.0.18 > > |_ HydraVM > > |_platforms > > |_winbuild > > I gone through the build process with Klaus (Thanks Klaus :-)). > > I'm on WindowsXP and checked out the svn branche of HydraVM from > squeakvm.org. > > Any suggestions appreciate. windows command line. a bash-s mkdir treats backslashes differently that's why : mkdir .\obj\vm > mkdir: cannot create directory `.objvm': File exists If you going to run make from bash command line, i would recommend you to use makefile.mingw32 , where i fixed all backslashes to straight ones. But mingw using different GCC version, which producing VM which is about 30% slower comparing to VM built with GCC 2.95. > > TIA > > Frank > > > > Edelstahlwerke Schmees GmbH > > Geschäftsleitung Clemens Schmees > > Sitz D-01796 Pirna > > Handelsregister Dresden HRB 54 > > E-Mail: [hidden email] > > WEB: www.schmees.com > > > > Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte > Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail > irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und > vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte > Weitergabe dieser Mail ist nicht gestattet. > > > > This e-mail may contain confidental and/or privileged information. If you > are not intended recipient or have received this e-mail in error, please > notify the sender immediately and destroy this e-mail. Any unauthorized > copying, disclosure or distribution of the material in this e-mail is > strictly forbidden. > > > -- Best regards, Igor Stasenko AKA sig. |
Free forum by Nabble | Edit this page |