Linux
pwndbg
https://github.com/pwndbg/pwndbghttp://blog.naver.com/PostView.nhn?blogId=shilf1&logNo=220944138541&beginTime=0&jumpingVid=&from=search&redirect=Log&widgetTypeCall=true
Software Based Memory Testing
임베디드에서 소프트웨어 베이스 메모리 테스트에 관한 글입니다.매주 좋은 내용인 것 같아 공유드립니다. 임베디드에서 소프트웨어베이스 메모리 테스트 번역
Porting Linux applications to 64-bit systems
이 글은 Porting Linux applications to 64-bit systems 을 참조하여 작성한 글입니다.더욱 명확한 내용 확인을 원하시는 분들은 위 URL 참고하여 주시기 바랍니다. 지금은 64-bit 시스템이 서버나 데스크탑에서 흔하게 사용되지만 예전엔 아니였습니다. Linux는 64-bit 프로세서들을 사용하기 위한 첫 번째 cross-platform 운영체제들 중의 하나였습니다. 많은 소프트웨어 개발자들은 예전에 개발했던 32-bit 기반 어플리케이션들을 64-bit 환경으로 포팅하기 위한 필요성을 느끼고 있습니다. 64-bit 프로세서의 보급화가 빠르게 이뤄지면서 이 필요성은 지속적으로 중요하게되었죠. UNIX나 다른 UNIX 계열의 운영체제와 같이, 리눅스도 64-bit 환경에 대..
Warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
-Wwrite-strings In C++, nonzero means warn about deprecated conversion from string literals to 'char *'. In C, similar warning, except that the conversion is of course not deprecated by the ISO C standard. g++ 옵션 중 -Wno-write-strings 을 붙여서 컴파일 하면 된다.