4.6.1이 마지막인듯
https://nodejs.org/download/release/v4.6.1/
wget https://nodejs.org/download/release/v4.6.1/node-v4.6.1.tar.gz
tar -xvf node-v4.6.1.tar.gz
cd node-v4.6.1.tar.gz
./configure
make
make install
단순한 프로세스지만…. 컴파일러랑 이것저것 안 맞으면 error 남
빌드환경 업데이트
yum -y update
yum -y groupinstall "Development Tools"
yum -y install screen
이래도 gcc 버전은 낮음 ㅜㅜ
rpm --import http://ftp.scientificlinux.org/linux/scientific/5x/x86_64/RPM-GPG-KEYs/RPM-GPG-KEY-cern
wget -O /etc/yum.repos.d/slc6-devtoolset.repo http://linuxsoft.cern.ch/cern/devtoolset/slc6-devtoolset.repo
yum install devtoolset-2
scl enable devtoolset-2 bash
버전확인
gcc --version
gcc (GCC) 4.8.2 20140120 (Red Hat 4.8.2-15)
...
$ g++ --version
g++ (GCC) 4.8.2 20140120 (Red Hat 4.8.2-15)
...
$ gfortran --version
GNU Fortran (GCC) 4.8.2 20140120 (Red Hat 4.8.2-15)
...
우왕 굿
'글 > 코딩' 카테고리의 다른 글
boost fusion을 이용한 멤버기반 class 복사하기 (0) | 2016.08.24 |
---|---|
C# 링크로 파일 추가 시 빌드때 자동 복사 (0) | 2015.01.29 |
ptthread 관련 링크 (0) | 2015.01.28 |
nginx 설치 정리 (0) | 2013.04.17 |
C# Amazon S3Region 의미 (0) | 2013.04.16 |