Skip to content
New issue

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

Library file dependent on sketch file not compiling in Arduino IDE #2547

Closed
wolfv6 opened this issue Jan 9, 2015 · 4 comments
Closed

Library file dependent on sketch file not compiling in Arduino IDE #2547

wolfv6 opened this issue Jan 9, 2015 · 4 comments
Labels
arduino-builder The tool used to handle the Arduino sketch compilation process arduino-cli Related to the arduino-cli tool Component: Compilation Related to compilation of Arduino sketches feature request A request to make an enhancement (not a bug fix) Type: Duplicate Another item already exists for this topic

Comments

@wolfv6
Copy link

wolfv6 commented Jan 9, 2015

Please change Arduino IDE so it can compile library files that depend on sketch files.

Usually project files depend on library files.
But sometimes its useful to have dependences in the other direction.
In the following example, a library file depends on a sketch file.
Here is the example's directory structure:

sketch1\
    sketch1.ino
    CustomClass.h

sketch2\
    sketch2.ino
    CustomClass.h

Arduino\libraries\lib_folder\
    LibClass.h                        << LibClass.h depends on CustomClass.h

Each sketch has a CustomClass.h file.
The code within the customClass files is different for each sketch.
LibClass.h includes CustomClass.h
Downloaded example code here: libClass_depend_on_sketchClass.zip

To compile sketch1.ino on Arduino 1.0.6 IDE, the user needs to move the corresponding CustomClass.h into lib_folder.
To compile sketch2.ino, the user needs to move that CustomClass.h into lib_folder.
Moving files in and out of libraries is dangerous and requires deleting Arduino's AppData\Local\Temp\build folder.
All the CustomClass files are moved in and out of the library every time all the sketchX.ino programs are regression tested.
Regression testing each versions of sketchX.ino will become impractical as more versions of sketchX.ino are added.
And instructing library users to move CustomClasses into the library is not very user friendly.
This is how one application describes the work around in its user guide:
https://github.com/wolfv6/keybrd/blob/master/doc/keybrd_library_user_guide.md#populate-arduinolibraries-with-keybrd-library-sym-links

If CustomClass.h is not moved into the lib_folder, Arduino 1.0.6 IDE does not find the CustomClass.h file.
Here is the verbose error message:

Arduino: 1.0.6 + Td: 1.20 (Windows 7), Board: "Teensy 2.0"
C:\Program Files (x86)\Arduino\hardware\tools\avr\bin\avr-g++ -c -g -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections -mmcu=atmega32u4 -DF_CPU=16000000L -MMD -DUSB_VID=null -DUSB_PID=null -DARDUINO=106 -DTEENSYDUINO=120 -felide-constructors -std=c++0x -DUSB_HID -DLAYOUT_US_ENGLISH -IC:\Program Files (x86)\Arduino\hardware\teensy\cores\teensy -IC:\Users\wolf\Documents\Arduino\libraries\lib_folder C:\Users\wolf\AppData\Local\Temp\build5396932314268139837.tmp\main.cpp -o C:\Users\wolf\AppData\Local\Temp\build5396932314268139837.tmp\main.cpp.o 

In file included from main.cpp:1:
C:\Users\wolf\Documents\Arduino\libraries\lib_folder/LibClass.h:4:25: warning: CustomClass.h: No such file or directory
In file included from main.cpp:1:
C:\Users\wolf\Documents\Arduino\libraries\lib_folder/LibClass.h:9: error: 'CustomClass' does not name a type
C:\Users\wolf\Documents\Arduino\libraries\lib_folder/LibClass.h: In member function 'void LibClass::fn()':
C:\Users\wolf\Documents\Arduino\libraries\lib_folder/LibClass.h:11: error: 'customObj' was not declared in this scope

Please change Arduino IDE so it can compile library files that depend on sketch files.

@crteensy
Copy link

crteensy commented Dec 1, 2015

This request is basically what is described at https://www.arduino.cc/en/Hacking/BuildProcess in the Build Process section, second sentence. And I'd love to see it implemented/working. Many libraries could benefit from this!

@lmihalkovic
Copy link

It seems arduino-build 15 is ahead on this topic.

@wolfv6
Copy link
Author

wolfv6 commented May 11, 2016

Thanks @lmihalkovic.

I no longer need this feature. But it would still be useful for others.

This issue can be closed.

@matthijskooijman
Copy link
Collaborator

I am indeed closing this, in favour of the relevant arduino-builder issue.

@per1234 per1234 added the Type: Duplicate Another item already exists for this topic label Jul 2, 2017
@per1234 per1234 added feature request A request to make an enhancement (not a bug fix) Component: Compilation Related to compilation of Arduino sketches arduino-cli Related to the arduino-cli tool arduino-builder The tool used to handle the Arduino sketch compilation process labels Oct 31, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
arduino-builder The tool used to handle the Arduino sketch compilation process arduino-cli Related to the arduino-cli tool Component: Compilation Related to compilation of Arduino sketches feature request A request to make an enhancement (not a bug fix) Type: Duplicate Another item already exists for this topic
Projects
None yet
Development

No branches or pull requests

6 participants