Automatically generated patch (1:5.0~+rc2-1+rpi1)
authorPeter Micahel Green <plugwash@raspbian.org>
Thu, 11 Jul 2019 03:08:05 +0000 (04:08 +0100)
committerRaspbian forward porter <root@raspbian.org>
Thu, 11 Jul 2019 03:08:05 +0000 (04:08 +0100)
Last (up to) 3 git changes, FYI:

commit d8bb5e17a1c124bfc65bd4da3d5bad2318b86155
Author: Peter Michael Green <plugwash@raspbian.org>
Date:   Thu Sep 7 07:03:48 2017 +0000

    Remove old cmake patch, dgit will regenerate it.

commit 8479377cb2739eeaa610fbc0370f239e0cabda83
Merge: 706ae0030 46e6d900f
Author: Peter Michael Green <plugwash@raspbian.org>
Date:   Thu Sep 7 07:11:20 2017 +0100

    Merge raspbian changes from llvm-toolchain-4.0

commit 706ae0030c98b01e6594ab4a4aca848e9dbedbd5
Merge: 2b80ff9a0 b60f1e5d8
Author: plugwash <plugwash@thinkpad>
Date:   Thu Sep 7 07:02:37 2017 +0100

    Psuedomerge to tie in 4.0 history.

Gbp-Pq: Name auto-1:5.0~+rc2-1+rpi1-d8bb5e17a1c124bfc65bd4da3d5bad2318b86155-1504768094

cmake/config.guess.hack [new file with mode: 0644]
cmake/modules/GetHostTriple.cmake
compiler-rt/cmake/base-config-ix.cmake

diff --git a/cmake/config.guess.hack b/cmake/config.guess.hack
new file mode 100644 (file)
index 0000000..13b18bf
--- /dev/null
@@ -0,0 +1,2 @@
+#!/bin/bash -e
+$(dirname "$0")/config.guess | sed -r s/arm[a-zA-Z0-9]*/armv6/
index 019188a59cc67dfd90548a4142c45d7117beb607..d893071b08e411f5187a99029e6855018794713a 100644 (file)
@@ -15,7 +15,7 @@ function( get_host_triple var )
       set( value "i686-pc-mingw32" )
     endif()
   else( MSVC )
-    set(config_guess ${LLVM_MAIN_SRC_DIR}/cmake/config.guess)
+    set(config_guess ${LLVM_MAIN_SRC_DIR}/cmake/config.guess.hack)
     execute_process(COMMAND sh ${config_guess}
       RESULT_VARIABLE TT_RV
       OUTPUT_VARIABLE TT_OUT
index b208f085240844ec03e87c438306f6b4bbc4d814..1de5a75c0de00e13e7931e4df51c861e7b0e2a57 100644 (file)
@@ -178,8 +178,8 @@ macro(test_targets)
       if(WIN32)
         test_target_arch(arm "" "" "")
       else()
-        test_target_arch(arm "" "-march=armv7-a" "-mfloat-abi=soft")
-        test_target_arch(armhf "" "-march=armv7-a" "-mfloat-abi=hard")
+        test_target_arch(arm "" "" "-mfloat-abi=soft")
+        test_target_arch(armhf "" "" "-mfloat-abi=hard")
         test_target_arch(armv6m "" "-march=armv6m" "-mfloat-abi=soft")
       endif()
     elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "aarch32")