python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
couldn't create a lua module in C++ (can't include local header)
I'm using vs code and g++ to compile c++, however I can't include lua.h, lauxlib.h, lualib.h etc.
this is the terminal (using vscode terminal):
C:\MingW\bin> .\g++ C:\Users\leand\Desktop\VSCODE\cpp...
Leandro Czbr
Votes: 0
Answers: 0
fatal error: src/include/SDL2/SDL.h: No such file or directory
The part where it says
#include <src/include/SDL2/SDL.h>
is not working.
My compile error is
fatal error: src/include/SDL2/SDL.h: No such file or directory
Here my entire code
#include <src...
Nate
Votes: 0
Answers: 1
why does lsp clangd linting throws an error "bits/c++config.h file not found?
lsp linting clangd throws a linting error
when doing an include
e.g
#include <iostream> error bits/c++config.h file not found
I already installed mingw(via choco install) and added it to my pat...
reiend
Votes: 0
Answers: 2
VSCode C++ can't find header file
VSCode:1.65.2
OS: Ubuntu 20.04
When I try to compile my C++ code in VSCode terminal or system terminal, I get an error message saying
fatal error: 'itensor/all.h' file not found
Then, I updated inclu...
Sabhyata21
Votes: 0
Answers: 0