반응형
[Linux]
Check and add default include paths compiled and explored by g++, gcc
(g++ , gcc가 컴파일하며 탐색하는 기본 include 경로 확인 및 추가)
(추천) Qt QML과 C++로 시작하는 크로스플랫폼 앱 개발 강의 - 입문편
g++ -v -E - 또는 gcc -v -E -
이후
#include “…” search starts here:#include <…> search starts here:
부분이 탐색하는 기본 include 경로들이다.
=============================================================
이 경로를 추가하고 싶다면? 즉, 내가 원하는 경로로 컴파일시 탐색하고 싶다면?
export PATH=경로:$PATH
반응형
(g++-v-E - or gcc-v-E -
After this
#include “…” search starts here:#include <…> search starts here:
These are the basic include paths that part searches for.
=============================================================
If you want to add this route? In other words, what if I want to navigate when compiling to the path I want?
export PATH=path:$PATH)
(추천) Qt QML과 C++로 시작하는 크로스플랫폼 앱 개발 강의 - 입문편
반응형