diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-09-18 20:25:47 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-09-18 21:51:57 -0700 |
commit | 61d11f34886e1102631681a462aae4e77e56dc28 (patch) | |
tree | 8f3d1a1a37e5dbe0ee6b76f8ce12484085d0988e /src/sanity.hpp | |
parent | 14347ea3be189918fef03b766c97391b7ff33cdd (diff) | |
download | tmwa-61d11f34886e1102631681a462aae4e77e56dc28.tar.gz tmwa-61d11f34886e1102631681a462aae4e77e56dc28.tar.bz2 tmwa-61d11f34886e1102631681a462aae4e77e56dc28.tar.xz tmwa-61d11f34886e1102631681a462aae4e77e56dc28.zip |
Update for cross-compilation
Diffstat (limited to 'src/sanity.hpp')
-rw-r--r-- | src/sanity.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sanity.hpp b/src/sanity.hpp index c00d9b2..455990a 100644 --- a/src/sanity.hpp +++ b/src/sanity.hpp @@ -41,10 +41,10 @@ namespace tmwa #endif // __GNUC__ == 4 #if not defined(__i386__) and not defined(__x86_64__) -// Known platform dependencies: -// endianness for the [RW]FIFO.* macros -// possibly, some signal-handling -// some integer sizes (partially fixed for the x32 ABI) -# error "Unsupported platform, we use x86 / amd64 only" +// There are no longer any *known* platform-independent bits, +// but nothing has been tested yet. It compiles, though, so ship it! +# ifndef QUIET +# warning "Unsupported platform, upstream uses x86 / amd64 only" +# endif #endif // not __i386__ } // namespace tmwa |