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
echo "Downloading gcc source files..." | |
curl https://ftp.gnu.org/gnu/gcc/gcc-5.5.0/gcc-5.5.0.tar.gz -O | |
echo "extracting files..." | |
tar zxvf gcc-5.5.0.tar.gz | |
echo "Installing dependencies..." | |
yum -y install gmp-devel mpfr-devel libmpc-devel | |
echo "Configure and install..." |
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
#============================================================================= | |
# dark_powered.toml --- dark powered configuration example for SpaceVim | |
# Copyright (c) 2016-2020 Wang Shidong & Contributors | |
# Author: Wang Shidong < wsdjeg at 163.com > | |
# URL: https://spacevim.org | |
# License: GPLv3 | |
# Edited by Mark Phillips, in Nano 5.3 | |
# https://gist.github.com/2c5cb4b4b063d4c63004bbda18ec944a | |
# wget -O - https://bit.ly/3jrzVGM | |
# wget -o ~/.SpaceVim.d/init.toml https://bit.ly/3jrzVGM |
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
# Non-root account is recommended for this process | |
# centos-specific prepration | |
sudo yum -y update && sudo yum -y groupinstall 'Development Tools' && sudo yum -y install curl irb m4 ruby | |
# install linuxbrew | |
git clone https://github.com/Homebrew/brew ~/.linuxbrew/Homebrew | |
mkdir ~/.linuxbrew/bin | |
ln -s ~/.linuxbrew/Homebrew/bin/brew ~/.linuxbrew/bin | |
eval $(~/.linuxbrew/bin/brew shellenv) |