This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#To see the individual features enabled by a particular -O | |
gcc -O2 -Q --help=optimizers | |
# Show enabled targets | |
gcc -c -Q -march=native --help=target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# if Apt works | |
apt-get install screen | |
# or | |
wget http://ftp.gnu.org/gnu/screen/screen-4.9.0.tar.gz | |
tar -xf screen-4.9.0.tar.gz | |
cd screen-4.9.0 | |
./configure && make |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add plugin manager | |
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim | |
.vimrc | |
<<COPY>> | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim |