From 3b815ed283eb8d59c4e46dd89aa1e17c9f4deee6 Mon Sep 17 00:00:00 2001 From: KWSys Robot Date: Tue, 12 May 2015 11:38:02 -0400 Subject: KWSys 2015-05-12 (b1d560a0) Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ b1d560a0 | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' 34fceb50..b1d560a0 Brad King (1): b1d560a0 CPU: MIPS is biendian --- CPU.h.in | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CPU.h.in b/CPU.h.in index 626914b..884d71a 100644 --- a/CPU.h.in +++ b/CPU.h.in @@ -76,7 +76,15 @@ #elif defined(__m68k__) || defined(M68000) # define @KWSYS_NAMESPACE@_CPU_ENDIAN_ID @KWSYS_NAMESPACE@_CPU_ENDIAN_ID_BIG -/* MIPS */ +/* MIPSel (MIPS little endian) */ +#elif defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) +# define @KWSYS_NAMESPACE@_CPU_ENDIAN_ID @KWSYS_NAMESPACE@_CPU_ENDIAN_ID_LITTLE + +/* MIPSeb (MIPS big endian) */ +#elif defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) +# define @KWSYS_NAMESPACE@_CPU_ENDIAN_ID @KWSYS_NAMESPACE@_CPU_ENDIAN_ID_BIG + +/* MIPS (fallback, big endian) */ #elif defined(__mips) || defined(__mips__) || defined(__MIPS__) # define @KWSYS_NAMESPACE@_CPU_ENDIAN_ID @KWSYS_NAMESPACE@_CPU_ENDIAN_ID_BIG -- cgit v0.12 From 576ef8c56ef68b94340f95854a8211fb6f3562f1 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 13 May 2015 12:53:32 -0400 Subject: KWSys: Tell Git not to export .gitattributes KWSys upstream added an attribute to export .gitattributes so that importing snapshots into the sources of other projects would bring along the attributes. However, we don't want to export them from CMake. Drop .gitattributes entries not relevant to CMake. --- Source/kwsys/.gitattributes | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/kwsys/.gitattributes b/Source/kwsys/.gitattributes index 248786e..a9c4e77 100644 --- a/Source/kwsys/.gitattributes +++ b/Source/kwsys/.gitattributes @@ -1,8 +1,4 @@ .git* export-ignore -.gitattributes -export-ignore - -/GitSetup export-ignore -/SetupForDevelopment.sh export-ignore eol=lf /CONTRIBUTING.rst conflict-marker-size=78 -- cgit v0.12