cmake -G “Unix Makefiles” -DCMAKE_INSTALL_PREFIX=`pwd`/install -DCMAKE_BUILD_TYPE=MinSizeRel -DCMAKE_C_COMPILER=`xcrun -f clang` -DCMAKE_CXX_COMPILER=`xcrun -f clang++` -DwxWidgets_CONFIG_…
- Category Archives 비공개
-
-
tip for auto_ptr with C++
1. how to test whether auto_pointer is null? if (!myPointer.get()) { // do not dereference here } 2. how to pass auto_pointer ? std::auto_ptr<class> ptr_class = std::auto_ptr( new class );
-
ZeroMQ install on osx
ZeroMQ : http://zeromq.org/docs:source-git git clone git://github.com/zeromq/libzmq.git cd libzmq ./autogen.sh ./configure # add other options here make make check sudo make install or brew install ze…
-
Install GDB on OSX Yosemite
First things first – you need to install brew. It’s a homebrew package installer that can be found here. Then in your terminal, run brew install gdb This will install the latest gdb. but,…
-
[펌]패치 파일 만드는 법과 적용하는 법
http://coffeenix.net/doc/misc/patch.html 패치 파일 만드는 법과 적용하는 법 패치 파일의 쓰임 패치(patch) 파일은 두 파일들간의 차이들을 출력해 주는 프로그램인 diff에 의해 생성된 파일을 의미한다. 주로 쓰이는 때는 어떤 프로그램에서 기능향상이나 문제점을 해결하기 위해 소스파일들을 고치고 나서 고친 부분에 대한 정보…
-
FIX8 lib. install on OSX
1. open source download http://fix8.org/downloads.html 2. un tar 3. brew install automake 4. brew install poco 5. configure –with-poco=/usr/local/opt/poco 6. make 7. but… error In file inc…
-
How to Install Git 2.4.2 on CentOS/Redhat 7,6,5 and Fedora 20/19
http://tecadmin.net/install-git-2-0-on-centos-rhel-fedora/ Git has released 2.4.2 version on May 26, 2015.It has lots of noticeable changes over git 1.9 release. Git is a free and open source distribu…
-
[scrap]리눅스 메모리 사용량 확인
http://solarixer.blogspot.kr/2010/10/blog-post_08.html 리눅스에서 메모리 사용량 측정을 위한 방법을 소개 드립니다. 아래 3가지 외에도 여러 툴이나 시스템 커맨드가 있겠지만, 빠르고 정확하게 접근하기 위한 방법을 알아보는 것을 목적으로 합니다. 1) /proc/PID/status 를 보고 VmS…
-
[scrap]리눅스에서 Disk IO 및 시스템 리소스 모니터링
http://solarixer.blogspot.kr/2010/10/disk-io.html 리눅스 상에서 시스템 리소스 모니터링 할 때 보통 아래와 같은 command 를 사용한다. CPU 정보를 볼때 보통 top 이나 sar 등으로 보고 프로세스 정보를 볼 땐 보통 ps 를 사용하며 메모리 정보를 볼 땐 free , vmstat 등을 사용한다. 디스크 IO…