Monthly Archives: July 2013

Raspberry Pi Kernel Compile

Ubuntu 12.04 LTS 32bit 기준 sudo apt-get install vim(선택사항) sudo apt-get update <- gcc-4.6-arm-linux-gnueabi 설치가 안될경우 sudo apt-get install git-core sudo apt-get install gcc-4.6-arm-linux-gnueabi sudo ln -s /usr/bin/arm-linux-gnueabi-gcc-4.6 /usr/bin/arm-linux-gnueabi-gcc mkdir raspberrypi cd raspberrypi git clone https://github.com/raspberrypi/tools.git <- 다운로드 40분 정도 … Continue reading

Posted in Raspberry Pi, Ubuntu | Tagged , | Leave a comment

scope operator

::  <- 전역의 범위를 지정 ::variable; // 전역변수를 우선 지정함 class::function();   여기서 namespace 개념이 파생됨.

Posted in C#, C++ | Leave a comment