본문 바로가기
시행착오 스토리/이모저모

180111 양벨라의이모저모

by 양벨라 2018. 1. 11.

1. 왜 std를 찾지 못할까



/* 에러발생*/
include <iostream>
include "stdafx.h"
/* 에러해결*/
include "stdafx.h"
include <iostream>

visual studio로 c++을 다뤄보며 한번도 겪지 못했던 바보 상황? "stdafx.h" 헤더파일은 항상 맨 위에 위치하여야 한다.


2. g++ 컴파일 프로시저 시작 지점 에러



/* 에러발생*/
> g++ -o test test.cpp
/* 에러해결*/
> g++ -o test test.cpp -static-libstdc++