Skip to content
This repository was archived by the owner on Apr 13, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ jobs:
# linux (cron only)
#
# linux-next (cron only)
- name: "ARCH=arm32_v5 LD=ld.lld REPO=linux-next"
env: ARCH=arm32_v5 LD=ld.lld REPO=linux-next
- name: "ARCH=arm32_v5 LD=ld.lld LLVM_IAS=1 REPO=linux-next"
env: ARCH=arm32_v5 LD=ld.lld LLVM_IAS=1 REPO=linux-next
if: type = cron
- name: "ARCH=arm32_v6 REPO=linux-next"
env: ARCH=arm32_v6 REPO=linux-next
if: type = cron
- name: "ARCH=arm32_v7 LD=ld.lld REPO=linux-next"
env: ARCH=arm32_v7 LD=ld.lld REPO=linux-next
if: type = cron
- name: "ARCH=arm64 LD=ld.lld REPO=linux-next"
env: ARCH=arm64 LD=ld.lld REPO=linux-next
- name: "ARCH=arm64 LD=ld.lld LLVM_IAS=1 REPO=linux-next"
env: ARCH=arm64 LD=ld.lld LLVM_IAS=1 REPO=linux-next
Comment thread
tpimh marked this conversation as resolved.
if: type = cron
- name: "ARCH=mips LD=ld.lld REPO=linux-next"
env: ARCH=mips LD=ld.lld REPO=linux-next
Expand All @@ -64,11 +64,11 @@ jobs:
- name: "ARCH=s390 BOOT=0 REPO=linux-next"
env: ARCH=s390 REPO=linux-next
if: type = cron
- name: "ARCH=x86 LD=ld.lld REPO=linux-next"
env: ARCH=x86 LD=ld.lld REPO=linux-next
- name: "ARCH=x86 LD=ld.lld LLVM_IAS=1 REPO=linux-next"
env: ARCH=x86 LD=ld.lld LLVM_IAS=1 REPO=linux-next
if: type = cron
- name: "ARCH=x86_64 LD=ld.lld REPO=linux-next"
env: ARCH=x86_64 LD=ld.lld REPO=linux-next
- name: "ARCH=x86_64 LD=ld.lld LLVM_IAS=1 REPO=linux-next"
env: ARCH=x86_64 LD=ld.lld LLVM_IAS=1 REPO=linux-next
if: type = cron
# stable
- name: "ARCH=arm32_v7 LD=ld.lld REPO=5.4"
Expand Down
15 changes: 15 additions & 0 deletions patches/llvm-all/linux-next/arm64/silence-dwarf2-warnings.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
diff --git a/Makefile b/Makefile
index 11fe9b1535de..3c6e0ae33d74 100644
--- a/Makefile
+++ b/Makefile
@@ -803,8 +803,10 @@ DEBUG_CFLAGS += -gsplit-dwarf
else
DEBUG_CFLAGS += -g
endif
Comment thread
tpimh marked this conversation as resolved.
+ifndef LLVM_IAS
KBUILD_AFLAGS += -Wa,-gdwarf-2
endif
+endif
ifdef CONFIG_DEBUG_INFO_DWARF4
DEBUG_CFLAGS += -gdwarf-4
endif