diff options
author | chriseth <chris@ethereum.org> | 2016-09-01 03:20:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-01 03:20:05 +0800 |
commit | b962d3c071f2f476d8ea05dd9869565175c2cd65 (patch) | |
tree | dfdd358f93c809af43811abf4e093a003853cb2f /scripts | |
parent | 9714bcf6ebd2aede1889df4c15426c51dfe46292 (diff) | |
parent | 68bd463bea5d5a17b90e76ee7f1bff0593775ca8 (diff) | |
download | dexon-solidity-b962d3c071f2f476d8ea05dd9869565175c2cd65.tar.gz dexon-solidity-b962d3c071f2f476d8ea05dd9869565175c2cd65.tar.zst dexon-solidity-b962d3c071f2f476d8ea05dd9869565175c2cd65.zip |
Merge pull request #975 from blockchaindev/bug/674-solc-crash
solc crashes without 'export LC_ALL=C'
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install_deps.sh | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index 4fb948ed..a67fea82 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -98,7 +98,7 @@ case $(uname -s) in brew update brew upgrade - + brew install boost brew install cmake brew install jsoncpp @@ -127,14 +127,14 @@ case $(uname -s) in #------------------------------------------------------------------------------ # Linux #------------------------------------------------------------------------------ - + Linux) case $(detect_linux_distro) in #------------------------------------------------------------------------------ # Arch Linux #------------------------------------------------------------------------------ - + Arch) #Arch echo "Installing solidity dependencies on Arch Linux." @@ -143,7 +143,7 @@ case $(uname -s) in # See https://wiki.archlinux.org/index.php/Official_repositories sudo pacman -Sy \ base-devel \ - boost \ + boost \ cmake \ git \ ;; @@ -158,7 +158,7 @@ case $(uname -s) in # All our dependencies can be found in the Alpine Linux official repositories. # See https://pkgs.alpinelinux.org/ - + apk update apk add boost-dev build-base cmake jsoncpp-dev @@ -231,7 +231,7 @@ case $(uname -s) in # Install "normal packages" # See https://fedoraproject.org/wiki/Package_management_system. dnf install \ - autoconf \ + autoconf \ automake \ boost-devel \ cmake \ @@ -326,16 +326,6 @@ case $(uname -s) in sudo apt-get -y update sudo apt-get -y install eth - # And install the English language package and reconfigure the locales. - # We really shouldn't need to do this, and should instead force our locales to "C" - # within our application runtimes, because this issue shows up on multiple Linux distros, - # and each will need fixing in the install steps, where we should really just fix it once - # in the code. - # - # See https://github.com/ethereum/webthree-umbrella/issues/169 - sudo apt-get -y install language-pack-en-base - sudo dpkg-reconfigure locales - ;; *) |