-
Notifications
You must be signed in to change notification settings - Fork 34
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
Multiple definition of 'main' when including a library with tests #168
Comments
I have modified it like this: rosogon@640201a If you agree with the approach, I can prepare tests and PR. |
Hi rosogon, thanks for contributing this! And I'm sorry to hear about this limitation of the library, that's really annoying. At the moment I'm torn -- I have a 2+ year old feature request for a Really there are 2 choices here: 1 is whether there is going to be some official movement toward
I saw that @per1234 happened to make some moves on this in the past few days, I'm not sure if there is extra information there. |
to avoid multiple definition of main if included library contains tests. Example of .arduino-ci.yaml: ``` unittest: libraries: - libA platforms: - uno exclude_dirs: - libA/test ``` See issue Arduino-CI#168
Hi @ianfixes , Thanks for your detailed answer. I understand your concerns. While we wait until that |
Yes exactly -- this is the model I would use for the fallback solution. It might make sense to just institute that functionality now, but the question is of how best to do it. What I'm leaning toward right now is a more robust handling of the "libraries" section, from a simple array to a more ambitious hash. In other words, not only do I think it's important to add what you're suggesting, I think that there are a lot of things that could be improved by configuring the individual libraries. And it would be better to tie that to the rest of the library config instead of the compiler specifically. If you were looking for a quick fix, I'm sorry to be taking you down this rabbit hole. |
I actually think that you might be compiling more code than the Arduino IDE currently. Arduino libraries either have their source files contained in the See also the Arduino library spec and this issue I filed about unclarity about legacy vs new-style libraries. |
No worries. I have the quick fix running locally :) I agree that the best approach is what you propose, specially if the idea is to store more information. It was actually my first thought, but discarded because of not being backwards compatible. Anyway, as @matthijskooijman's comments, there are library files being included to compile that shouldn't. |
Thanks for filing that @matthijskooijman, I'm now subscribed. I'll implement the logic you suggest here in advance of getting an answer there. |
Looks like I have the logic partially implemented already, just need to make it conditional: https://github.com/Arduino-CI/arduino_ci/blob/744365d/lib/arduino_ci/cpp_library.rb#L238-L253 |
You can see Arduino CLI's logic here: So there are two library layouts:
This is how layout is determined:
|
Thanks for the detailed answer, @per1234! |
Take into account that Find.find at cpp_files_in, recursively enters all directories. As one of the checked dirs is "", whole tree is actually returned. I guess cpp_files_in must receive a |
I'm taking a look at this now |
Hi @ianfixes . I get this error when running
|
You're right.. and I meant to respond a few days ago that (1) the test code didn't exercise this the way I thought it would and (2) there's a small rabbit hole here with getting library specs to load recursively. And possibly an inconsistency (library name vs path on disk) in the current code. But this is in progress. |
OK, I think this is ready for you to give it another try. At any rate, I was able to confirm what I believe is the desired behavior via unit testing. This fixes a host of issues you didn't raise, including being able to recursively bring in library dependencies by looking at |
Hi @ianfixes . Just tested and it works for my cases (both with 1.0 libraries). Thanks! |
System
ruby -v
: ruby 2.3.1p112bundle -v
: Bundler version 2.1.4bundle info arduino_ci
: arduino_ci (0.3.0)g++ -v
: gcc version 5.4.0 20160609Issue Summary
If libB depends on libA, both with arduino_ci tests, trying to run the unit tests on libB will raise the error "multiple definition of main". This happens because cpp_files_libraries returns the whole tree of the referenced library (libA in the example), not removing the files in test/.
Con: Skipping those files can break libraries containing files in test/ (which are needed to use the library). Weird, but could happen.
Arduino or Unit Test Code, Illustrating the Problem
The following repo illustratres the example: https://github.com/rosogon/arduino_ci_two_libraries
The text was updated successfully, but these errors were encountered: