mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-08-03 12:54:47 +00:00

* Use binutils-gold only on architectures where it is actually available * 33-armhf-defaults.diff Fix defaults to use correct CPU and FPU for debian armhf (Closes: #704111) * 34-powerpc-no-altivec.diff disable altivec by default on powerpc because debian powerpc does not require altivec (patch cherry picked from ubuntu)
25 lines
722 B
Diff
25 lines
722 B
Diff
Description: Make sure PowerPC doesn't default to altivec on
|
|
Author: Adam Conrad <adconrad@ubuntu.com>
|
|
Author: Peter Michael Green <plugwash@debian.org>
|
|
Forwarded: no
|
|
Reviewed-By: Colin Watson <cjwatson@ubuntu.com>
|
|
|
|
Last-Update: 2013-04-01
|
|
|
|
Index: clang-3.2.new/clang/lib/Lex/Makefile
|
|
===================================================================
|
|
--- clang-3.2.new.orig/clang/lib/Lex/Makefile 2013-04-01 02:32:35.000000000 +0000
|
|
+++ clang-3.2.new/clang/lib/Lex/Makefile 2013-04-01 02:32:03.000000000 +0000
|
|
@@ -16,11 +16,5 @@
|
|
|
|
LIBRARYNAME := clangLex
|
|
|
|
-ifeq ($(ARCH),PowerPC)
|
|
-ifneq ($(shell dpkg-architecture -qDEB_HOST_ARCH),powerpcspe)
|
|
-CXX.Flags += -maltivec
|
|
-endif
|
|
-endif
|
|
-
|
|
include $(CLANG_LEVEL)/Makefile
|
|
|