summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDenis Davydov <davydden@gmail.com>2016-05-09 22:04:34 +0200
committerDenis Davydov <davydden@gmail.com>2016-05-09 22:04:34 +0200
commit7a2d65967ce60efef1a5cce4969f3607915427f5 (patch)
treec97e73195fb7381cf445d2ca3d7ac0b0e62dec91 /lib
parentc37ea9aff548bfdf106aa141b8d6e6adec2ffd01 (diff)
downloadspack-7a2d65967ce60efef1a5cce4969f3607915427f5.tar.gz
spack-7a2d65967ce60efef1a5cce4969f3607915427f5.tar.bz2
spack-7a2d65967ce60efef1a5cce4969f3607915427f5.tar.xz
spack-7a2d65967ce60efef1a5cce4969f3607915427f5.zip
wrap tty.die to 80 chars
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/compiler.py14
1 files changed, 11 insertions, 3 deletions
diff --git a/lib/spack/spack/compiler.py b/lib/spack/spack/compiler.py
index a28d7302aa..b53c17494c 100644
--- a/lib/spack/spack/compiler.py
+++ b/lib/spack/spack/compiler.py
@@ -119,7 +119,9 @@ class Compiler(object):
@property
def openmp_flag(self):
# If it is not overridden, assume it is not supported and warn the user
- tty.die("The compiler you have chosen does not currently support OpenMP. If you think it should, please edit the compiler subclass and submit a pull request or issue.")
+ tty.die("The compiler you have chosen does not currently support OpenMP.",
+ "If you think it should, please edit the compiler subclass and",
+ "submit a pull request or issue.")
# This property should be overridden in the compiler subclass if
@@ -127,14 +129,20 @@ class Compiler(object):
@property
def cxx11_flag(self):
# If it is not overridden, assume it is not supported and warn the user
- tty.die("The compiler you have chosen does not currently support C++11. If you think it should, please edit the compiler subclass and submit a pull request or issue.")
+ tty.die("The compiler you have chosen does not currently support C++11.",
+ "If you think it should, please edit the compiler subclass and",
+ "submit a pull request or issue.")
+
# This property should be overridden in the compiler subclass if
# C++14 is supported by that compiler
@property
def cxx14_flag(self):
# If it is not overridden, assume it is not supported and warn the user
- tty.die("The compiler you have chosen does not currently support C++14. If you think it should, please edit the compiler subclass and submit a pull request or issue.")
+ tty.die("The compiler you have chosen does not currently support C++14.",
+ "If you think it should, please edit the compiler subclass and",
+ "submit a pull request or issue.")
+
#