- ARM 타겟 보드 용 OpenSSL 라이브러리 생성하기
- openssl-1.0.1s
2016년 3월 2일 수요일
2015년 12월 19일 토요일
2015년 10월 9일 금요일
2015년 9월 24일 목요일
2015년 9월 16일 수요일
Dependency file(.d) 파일이란.
make 를 수행하면 object file(.o) 과 함께 간혹 .d 파일이 생성된다.
이 .d 파일은 파일간의 의존성 관계를 표시하는 파일로 automake 를 통해 컴파일시
gcc 컴파일 옵션 -M 을 사용하는 경우 생성이 된다.
이 .d 파일은 파일간의 의존성 관계를 표시하는 파일로 automake 를 통해 컴파일시
gcc 컴파일 옵션 -M 을 사용하는 경우 생성이 된다.
2015년 5월 6일 수요일
How do I do a 'git status' so it doesn't display untracked files without using .gitignore?
Use this:
git status -unowhich is equivalent to:
git status --untracked-files=noAlso:
git config status.showuntrackedfiles no
피드 구독하기:
글 (Atom)

