wholder / ATTiny10IDE

A Streamlined IDE for Coding and Programming the ATtiny10 and other ATTiny Devices
MIT License
172 stars 24 forks source link

Compiler reporting can't find main.h #10

Open milelo opened 4 years ago

milelo commented 4 years ago

I'm trying to use your IDE to build my ATTiny10 OSH project under Windows 10 that I can only build successfully under either OSX or Debian using the avr-gcc toolchain.

The firmware is available at: https://github.com/milelo/SMBeeFirmware

I start the IDE in the src folder and load main.c. The compiler reports: While Compiling main.c:25:18: main.h: No such file or directory compilation terminated.

It would be very helpful for may people if this could be made to work.

The full project construction documentation is at: https://milelo.github.io/smbee/make-a-bee.html

Thanks for any help, Mike

wholder commented 4 years ago

At the moment, ATTiny10IDE expects to process only a single user input file does not support include files other than the set that are part of the built-in libraries.

I hope to address this in the near future but, at the moment, I'm also trying to resolve another issue with some recent changes to the toolchain. Since recent releases of macOs have removed support for 32 bit apps I've been trying to move the using the 64 bit toolchains. But, for some, as yet to identified reason, the 64 bit toolchains seem to have broken support for most of the ATTiny chips.

Wayne

On Sun, Mar 22, 2020 at 2:49 AM Mike Longworth notifications@github.com wrote:

I'm trying to use your IDE to build my ATTiny10 OSH project under Windows 10 that I can only build successfully under either OSX or Debian using the avr-gcc toolchain.

The firmware is available at: https://github.com/milelo/SMBeeFirmware

I start the IDE in the src folder and load main.c. The compiler reports: While Compiling main.c:25:18: main.h: No such file or directory compilation terminated.

It would be very helpful for may people if this could be made to work.

The full project construction documentation is at: https://milelo.github.io/smbee/make-a-bee.html

Thanks for any help, Mike

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/wholder/ATTiny10IDE/issues/10, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAIDM4UB636BTOJOIUM43GDRIXNLPANCNFSM4LRHJKVA .

milelo commented 4 years ago

Thanks for the update Wayne. Mike