We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
When I build the default compile db, I've got the following output and WiFi.h gets properly found:
WiFi.h
Scanning dependencies... Dependency Graph |-- Adafruit NeoPixel @ 1.12.5 |-- arduino-timer @ 3.0.1 |-- WiFi @ 3.2.0
When I add env.Replace(COMPILATIONDB_INCLUDE_TOOLCHAIN=True) to extra_script.py,
env.Replace(COMPILATIONDB_INCLUDE_TOOLCHAIN=True)
extra_script.py
Scanning dependencies... Dependency Graph |-- Adafruit NeoPixel @ 1.12.5 |-- arduino-timer @ 3.0.1 Warning! `COMPILATIONDB_INCLUDE_TOOLCHAIN` is scoping Warning! `COMPILATIONDB_INCLUDE_TOOLCHAIN` is scoping
So I can have either WiFi.h found by clangd or <algorithm> but not both. How could I have them both found by clangd?
<algorithm>
[env:esp32c3] platform = espressif32 board = esp32-c3-devkitm-1 framework = arduino monitor_speed = 115200 extra_scripts = pre:extra_script.py lib_deps = adafruit/Adafruit NeoPixel@^1.11.0 contrem/arduino-timer@^3.0.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I build the default compile db, I've got the following output and
WiFi.h
gets properly found:When I add
env.Replace(COMPILATIONDB_INCLUDE_TOOLCHAIN=True)
toextra_script.py
,So I can have either
WiFi.h
found by clangd or<algorithm>
but not both.How could I have them both found by clangd?
The text was updated successfully, but these errors were encountered: