We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had a space in my path and I got following error when compiling (verifying or building):
16:15:34 **** Incremental Build of configuration Release for project test **** make all Building file: ../test.cpp Starting C++ compile "/home/jan/programs/arduino-1.5.2/hardware/tools/avr/bin/avr-g++" -c -g -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections -MMD -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=152 -I"/home/jan/programs/arduino-1.5.2/hardware/arduino/avr/cores/arduino" -I"/home/jan/programs/arduino-1.5.2/hardware/arduino/avr/variants/standard" -MMD -MP -MF"test.cpp.d" -MT"test.cpp.d" -x c++ "../test.cpp" -o "test.cpp.o" Finished building: ../test.cpp
make: *** No rule to make target /home/jan/workspaces/eclipse', needed bytest.elf'. Stop.
/home/jan/workspaces/eclipse', needed by
16:15:35 Build Finished (took 645ms)
basically there was a space after "/home/jan/workspaces/eclipse" in "/home/jan/workspaces/eclipse plugin"
replacing the space with _ solved the problem. It took a while for the indexer to catch up.
Best regards Jantje
The text was updated successfully, but these errors were encountered:
I just tested this with #34 reverted and it seems to work fine. I'll close this one.
Sorry, something went wrong.
No branches or pull requests
I had a space in my path and I got following error when compiling (verifying or building):
16:15:34 **** Incremental Build of configuration Release for project test ****
make all
Building file: ../test.cpp
Starting C++ compile
"/home/jan/programs/arduino-1.5.2/hardware/tools/avr/bin/avr-g++" -c -g -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections -MMD -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=152 -I"/home/jan/programs/arduino-1.5.2/hardware/arduino/avr/cores/arduino" -I"/home/jan/programs/arduino-1.5.2/hardware/arduino/avr/variants/standard" -MMD -MP -MF"test.cpp.d" -MT"test.cpp.d" -x c++ "../test.cpp" -o "test.cpp.o"
Finished building: ../test.cpp
make: *** No rule to make target
/home/jan/workspaces/eclipse', needed by
test.elf'. Stop.16:15:35 Build Finished (took 645ms)
basically there was a space after "/home/jan/workspaces/eclipse" in "/home/jan/workspaces/eclipse plugin"
replacing the space with _ solved the problem. It took a while for the indexer to catch up.
Best regards
Jantje
The text was updated successfully, but these errors were encountered: