diff --git a/checks/architecture/Jamroot.jam b/checks/architecture/Jamroot.jam index 03f59534..b43ae600 100644 --- a/checks/architecture/Jamroot.jam +++ b/checks/architecture/Jamroot.jam @@ -22,3 +22,4 @@ obj power : power.cpp ; obj riscv : riscv.cpp ; obj sparc : sparc.cpp ; obj x86 : x86.cpp ; +obj s390 : s390.cpp ; diff --git a/checks/architecture/s390.cpp b/checks/architecture/s390.cpp new file mode 100644 index 00000000..3d948653 --- /dev/null +++ b/checks/architecture/s390.cpp @@ -0,0 +1,11 @@ +// s390.cpp +// +// Copyright (c) 2012 Steven Watanabe +// +// Distributed under the Boost Software License Version 1.0. (See +// accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + +#if !defined(__s390__) +#error "Not S390" +#endif