[VS Code] (실패) #include errors detected. please update your includepath 오류

YumeIroVillain·2021년 9월 20일
0

개발노트

목록 보기
1/28

최근 자동완성 및 포매팅 적용안됨 및 여러 세팅이 스파게티가 되어버린 바람에,
아예 VS Code 를 초기화하고 삭제한 뒤 다시 깔아서 세팅을 처음부터 하고 있다.
변동사항 유지를 위한 타래를 만들까 한다.

아래와같이 c_cpp_properties 항목에 /usr/local/include 를 넣어주면 된다.
하위디렉토리에 bits/stdc++ 를 넣어주면 더욱 편하다.

효과없었음을 확인했고, 다음 포스트에서 해결했다.

{
    "configurations": [
        {
            "name": "Mac",
            "includePath": [
                "${default}",
                "${workspaceFolder}/**",
                "/Library/Developer/CommandLineTools/usr/include/**"
            ],
            "defines": [],
            "macFrameworkPath": [
                "/System/Library/Frameworks",
                "/Library/Frameworks"
            ],
            "cStandard": "c17",
            "cppStandard": "c++17",
            "intelliSenseMode": "macos-gcc-x64"
        }
    ],
    "version": 4
}
profile
HW SW 둘다 공부하는 혼종의 넋두리 블로그 / SKKU SSE 17 / SWM 11th

0개의 댓글