코딩Coding/make★gcc★&g++★clang★compiler
-
makefile만들기 기초코딩Coding/make★gcc★&g++★clang★compiler 2022. 4. 16. 23:28
https://modoocode.com/311 씹어먹는 C++ - modoocode.com 모든 진리는 스택 오버플로우 ㅎㅎ stackoverflow https://stackoverflow.com/questions/2481269/how-to-make-a-simple-c-makefile How to make a SIMPLE C++ Makefile We are required to use a Makefile to pull everything together for our project, but our professor never showed us how to. I only have one file, a3driver.cpp. The driver imports a class from a locat... stac..
-
make 명령어 ❤️사용법, g++, clang, gcc 보다 더 편함. ㅎㅎ코딩Coding/make★gcc★&g++★clang★compiler 2022. 4. 16. 16:32
make 명령어 사용법 c언어 . c++ 둘다 사용 가능 c언어 , c++ 공동임. make 파일명 C언어일 경우~~~~ test.c일 경우 make test 하면 끝 뒤에 파일명은 붙히지 않음 그럼 test란 실행 파일이 생긴다. 그럼 ./test 실행하면 끝 //~~~~~ C++일 경우 test.cpp일 경우 make test 하면 끝 뒤에 파일명은 붙히지 않음 그럼 test란 실행 파일이 생긴다. 그럼 ./test 실행하면 끝 12분 51초에 나옴. https://youtu.be/oXxZJAG1q7w 다른 글 보기 Installing the GCC(C++ Compiler in macOS)& ❤️Apple M1 프로세서가 탑재된 최신 MacBook의 경우(경로. https://economiceco.t..
-
MacBookM1pro]역시맥북은 XcodeㅎㅎCompile C++ Using Xcode코딩Coding/make★gcc★&g++★clang★compiler 2022. 2. 18. 21:13
https://www.youtube.com/watch?v=HA-NahwEnyA&t=7s 다른 방법 그냥 gcc로 내가 수동 입력하자 ㅋ C++ vs 러스트_비교_C++단점 집요하게 파고 들어가서 러스트와 비교 ㅋ_deview한국개발자컨퍼런스_최신코딩동향체크_기본syntax연습하기part1_#rustlang https://youtu.be/Mr_zfyT-7qQ 한글Rust_068⭐️Rust Monomorphism vs Polymorphism https://youtu.be/mVtVbVFCSUo 한글Rust_069⭐️Rust Carriage_Return_C_Cpp_Haskell_Zig_BingAI활용법 #polyglot https://youtu.be/Mo-0k59wtAA
-
how to use c++20 / g++ -std=c++11 -o test test.cpp (build.sh❤️파일 만드는법)코딩Coding/make★gcc★&g++★clang★compiler 2022. 2. 18. 07:12
build.sh 파일 샘플 // macOS 그냥 실행 안된다 // chmod +x build.sh 으로 파일 권한을 올려주자!! //build.sh #!/bin/bash g++ -std=c++2a main.cpp g++ -std=c++11 -o test test.cpp g++ -std=c++20 C++20 기능은 GCC 8부터 사용할 수 있습니다. C++20 지원을 활성화하려면 명령줄 매개변수를 추가하세요. -std=c++20 G++ 9 이상 사용 -std=c++2a 또는 C++20 기능 외에 GNU 확장을 활성화하려면 다음을 추가하십시오. -std=gnu++20 내가 공부하려고 정리 https://github.com/YoungHaKim7/Cpp_Training GitHub - YoungHaKim7/Cp..
-
GCC 오류 설명서코딩Coding/make★gcc★&g++★clang★compiler 2022. 2. 18. 06:33
https://gcc.gnu.org/onlinedocs/gcc-4.0.1/gcc/Warning-Options.html Warning Options - Using the GNU Compiler Collection (GCC) If -Wformat is specified, do not warn about excess arguments to a printf or scanf format function. The C standard specifies that such arguments are ignored. Where the unused arguments lie between used arguments that are specified with `$' operand number sp gcc.gnu.org
-
ln: g++: File exists /(이렇게 에러나면)What is a "failed to create a symbolic link: file exists" error?코딩Coding/make★gcc★&g++★clang★compiler 2022. 2. 18. 06:28
What is a "failed to create a symbolic link: file exists" error? What is a "failed to create a symbolic link: file exists" error? I'm trying to create a symlink in my home directory to a directories and files on my data partition. I've tried: ~/Documents$ ln -sv ~/Documents/saga /media/mariajulia/485f3e29-355c-4be3-b80a- askubuntu.com ln 설정을 하다가 오타 나서 설정이 엉뚱하게 났던니 ln -s g++-11 g++ 했더니 ln: g++: F..