-
g++ -std=c++17 main.cpp -o main / g++ -Wall -Wextra -std=c++17 main.cpp -o main / clang++코딩Coding/make★gcc★&g++★clang★compiler 2022. 10. 26. 19:24728x90
#include <iostream> int main() { int PI = 3.1415; std::cout << "The value of pi is: " << PI << std::endl; return 0; }
$ g++ -std=c++17 main.cpp -o main $ ./main The value of pi is :3
17분 49초에 나옴
해결책
$ g++ -Wall -Wextra -std=c++17 main.cpp -o main
$ clang++ -Wall -Wextra -std=c++17 main.cpp -o main
반응형'코딩Coding > make★gcc★&g++★clang★compiler' 카테고리의 다른 글
윈도우에 초코로 Cmake PATH설정까지 끝 (0) 2022.12.15 Clang&Gcc❤️-Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic - use these and consider the following (see descriptions below) (0) 2022.12.04 Make 사용 가이드Makefile만들기 (0) 2022.11.26 C++ printf Debugging using macros / g++ -std=c++17 macro.cpp -o macro (0) 2022.10.26 윈도우에서 build.sh 실행하는 방법. (0) 2022.09.28 Windows개발환경 세팅 mingw64 (0) 2022.09.19 g++20 compiler 터미널 명령어 블로그 (0) 2022.09.10 gcc 에서 옵션 ggdb에 대해서 (0) 2022.09.08