I'm trying to use the Arduino-0012 software on Windows XP. My problem is that whenever I choose verify (Even with an empty text box) the program hangs indefinitely. The problem actually seems to have to do with compiler alone. When quitting the program normally without hitting the verify button, it leaves an orphan avr-gcc process, which seems to be hung up. (Stays indefinitely, uses no CPU power)
So I looked up the command line of that process using Process Explorer.
"C:\Program Files\arduino-0012\hardware/tools/avr/bin/avr-gcc" -c -g -Os -Wall -mmcu=atmega168 -DF_CPU=16000000L "-IC:\Program Files\arduino-0012\hardware\cores\arduino" -Ihardware\libraries\Wire -Ihardware\libraries\EEPROM -Ihardware\libraries\Ethernet -Ihardware\libraries\Firmata -Ihardware\libraries\LiquidCrystal -Ihardware\libraries\Matrix -Ihardware\libraries\Servo -Ihardware\libraries\SoftwareSerial -Ihardware\libraries\Sprite -Ihardware\libraries\Stepper -Ihardware\libraries\Wire -Ihardware\libraries\Wire\utility hardware\libraries\Wire\utility\twi.c -ohardware\libraries\Wire\utility\twi.o
I tried executing this command from command line, and about 50% of the times it executes correctly (Uses some CPU and returns in less than a second) and in the other cases it freezes, and isn't using any CPU. I can Ctrl+C to quit avr-gcc, but it still leaves an orphan as.exe.
So my possible conclusion is a broken pipe between avr-gcc and the assembler. Did anyone else experience this?