diff options
author | KWIML Upstream <kwrobot@kitware.com> | 2016-09-08 13:28:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-09-08 13:50:04 (GMT) |
commit | e83b96b793dbe9d525fc878f7e8df8304079e35d (patch) | |
tree | fe02bb72ef37d25d4b2a30c3c6112816940cbd55 | |
parent | 3fdbb0a806f67f10ea8428e03a4523d08d2b083c (diff) | |
download | CMake-e83b96b793dbe9d525fc878f7e8df8304079e35d.zip CMake-e83b96b793dbe9d525fc878f7e8df8304079e35d.tar.gz CMake-e83b96b793dbe9d525fc878f7e8df8304079e35d.tar.bz2 |
KWIML 2016-09-08 (d564b3c7)
Code extracted from:
https://gitlab.kitware.com/utils/kwiml.git
at commit d564b3c71a6dcec9b1cd84afb498b14a69307780 (master).
Upstream Shortlog
-----------------
Brad King (1):
d564b3c7 Update copyright year
Richard W.M. Jones (1):
12f000d5 abi.h: Add RISC-V, a little-endian architecture.
-rw-r--r-- | Copyright.txt | 2 | ||||
-rw-r--r-- | include/kwiml/abi.h | 6 | ||||
-rw-r--r-- | include/kwiml/int.h | 2 | ||||
-rw-r--r-- | src/version.h.in | 2 |
4 files changed, 8 insertions, 4 deletions
diff --git a/Copyright.txt b/Copyright.txt index a6204b0..515c4eb 100644 --- a/Copyright.txt +++ b/Copyright.txt @@ -1,5 +1,5 @@ Kitware Information Macro Library -Copyright 2010-2015 Kitware, Inc. +Copyright 2010-2016 Kitware, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/kwiml/abi.h b/include/kwiml/abi.h index 3626361..5ffd542 100644 --- a/include/kwiml/abi.h +++ b/include/kwiml/abi.h @@ -1,6 +1,6 @@ /*============================================================================ Kitware Information Macro Library - Copyright 2010-2015 Kitware, Inc. + Copyright 2010-2016 Kitware, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without @@ -467,6 +467,10 @@ suppression macro KWIML_ABI_NO_VERIFY was defined. #elif defined(__XTENSA_EL__) # define KWIML_ABI_ENDIAN_ID KWIML_ABI_ENDIAN_ID_LITTLE +/* RISC-V */ +#elif defined(__riscv__) +# define KWIML_ABI_ENDIAN_ID KWIML_ABI_ENDIAN_ID_LITTLE + /* Unknown CPU */ #elif !defined(KWIML_ABI_NO_ERROR_ENDIAN) # error "Byte order of target CPU unknown." diff --git a/include/kwiml/int.h b/include/kwiml/int.h index b297ace..489c603 100644 --- a/include/kwiml/int.h +++ b/include/kwiml/int.h @@ -1,6 +1,6 @@ /*============================================================================ Kitware Information Macro Library - Copyright 2010-2015 Kitware, Inc. + Copyright 2010-2016 Kitware, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/version.h.in b/src/version.h.in index e58e0dc..0ac8854 100644 --- a/src/version.h.in +++ b/src/version.h.in @@ -1,6 +1,6 @@ /*============================================================================ Kitware Information Macro Library - Copyright 2010-2015 Kitware, Inc. + Copyright 2010-2016 Kitware, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without |