-
-
Notifications
You must be signed in to change notification settings - Fork 129
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
String.h conflicts with <string.h> on case insensitive filesystems #37
Comments
I just ran into the same issue. |
I was writing an Arduino Emulator and was wondering why it did not compile on OS/X ! It took me quite some time to figure this out.... my vote is to use WString.h instead of String.h! |
Recently I tried to import an Arduino sketch to Microchip Studio 7 and ran into the same issue. Please find another name for this file! |
I was originally named WString.h, and still is in the AVR core which most people are using today. https://github.com/arduino/ArduinoCore-avr/blob/master/cores/arduino/WString.h |
I was creating the project for the ATMEGA4809 which is on the Arduino Nano Every. |
Yes, the renaming happened as part of the new "Arduino API" project, which is supposed to be the "direction which all cores are headed." Theoretically, this allows code that isn't core-dependent (like Strings) to be shared between multiple platforms, which would be a good thing. So far, the old cores have not been ported to the new API, and still have WString.* in their cores... |
Hi Bill, |
Some good news: WIN 10+ now supports case sensitive directories. |
memcpy is undefined in Visual Studio for Nano Every. #include <string.h> includes String.h, not the string.h. String.h includes string.h but agin it leads to String.h. So what one should do if their system is CASE_INSENSITIVE? |
I've been hitting this issue as well when creating a new Arduino Core and integrating with some SDKs, so the rename to WString would be welcomed. |
This issue also makes it impossible to mock the CoreAPI for non-Arduino platforms... |
Hi there! We are also experiencing this issue while developing this new core: We are renaming those files (and updating the corresponding includes) before generating the release package. Thanks! |
Hi @jaenrig-ifx , |
Hi @facchinm, Understood! Thanks. I will make those changes so we can avoid the renaming 👍 |
@facchinm Okay, that works 👍 |
Yup, to support old libraries we do provide the |
That was quick. All right! Thanks! |
The Arduino API renamed "WString.h" to "String.h"
Given that "string.h" is a part of libc, and that most modern operating systems implement sort of "fuzzy" case-matching in their filesystems, this seems ripe for generating confusion.
And in fact, it seems to break builds when sketches have been imported into Atmel Studio 7, if they use the ArduinoAPI - when ipaddress.cpp is built as part of the core, it includes both <string.h> and "String.h", and gets api/string.h for both of them, leaving the libc functions undefined:
There is some discussion here: https://www.avrfreaks.net/forum/7-compilation-error-arduino-nano-every-sketch
The exact problem may be that AS7 adds
-I"..\include\core\api"
that isn't needed (or used in an Arduino IDE build), but it does illustrate the sort of confusion that can/will occur.The text was updated successfully, but these errors were encountered: