본문 바로가기

Language/C & C++4

jni_md.h 관련 unknown type name "__int64" 에러 시 대처법 https://m.blog.naver.com/PostView.nhn?blogId=kekemusa37&logNo=220005378880&proxyReferer=https:%2F%2Fwww.google.com%2F [Error] jni_md.h 관련 unknown type name "__int64" 에러 시 대처법 안녕하세요.찍찍이 입니다. NDK관련 빌드를 하면서 하기와 같이 에러가 발생되어 목적파일이 생기지 않... blog.naver.com 2020. 7. 8.
윈도우에서 VSCODE C/C++설정 tasks.json { "version": "2.0.0", "runner": "terminal", "type": "shell", "echoCommand": true, "presentation" : { "reveal": "always" }, "tasks": [ //C++ 컴파일 { "label": "save and compile for C++", "command": "g++", "args": [ "${file}", "-g", "-o", "${fileDirname}/${fileBasenameNoExtension}" ], "group": "build", //컴파일시 에러를 편집기에 반영 //참고: https://code.visualstudio.com/docs/editor/tasks#_defining-a-pro.. 2020. 6. 28.
BOM(byte order mark) 문제 fatal error: UTF-16 (LE) byte order mark detected in http://blog.wystan.net/2007/08/18/bom-byte-order-mark-problem wystan's tales > UTF-8 인코딩에서의 BOM(Byte Order Mark) 문제 다양한 언어를 표현할 수 있도록 해주는 유니코드(Unicode) 인코딩에는 여러가지 방식이 있습니다. 최근 웹 환경에서 많이 쓰이는 UTF-8을 비롯해서 UTF-16, UTF-32 등이 이런 인코딩 방식을 나타내지요 blog.wystan.net 2020. 6. 28.
맥에서 VS code로 C/C++ 빌드, 실행 개발 환경설정 tasks.json(컴파일과 실행 설정) { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "build_gcc", "type": "shell", "command": "gcc", "args": [ "-g", "-o", "${fileDirname}/${fileBasenameNoExtension}.out", "${file}" ], "group": { "kind": "build", "isDefault": true }, "problemMatcher": [ "$gcc" ] }, { "label": .. 2020. 6. 26.