From b2abbdc3ec790368ae3ac2d22934a1b07b935a0b Mon Sep 17 00:00:00 2001 From: Antti Korpi Date: Mon, 13 Jan 2020 15:26:35 +0100 Subject: Debugging Travis again: Try both clang and gcc I have no idea how the build is failing with the $(CC) change. Flags look the same. Only difference is it's defaulting to gcc. Let's see if this changes anything. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 53ce843..68afaf9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,8 @@ dist: bionic language: c +compiler: + - gcc + - clang script: - make addons: -- cgit v1.3-2-g0d8e From e9b88ae57011f4c72088ebfd546235968f697e7a Mon Sep 17 00:00:00 2001 From: Antti Korpi Date: Mon, 13 Jan 2020 15:33:06 +0100 Subject: Travis: Just use clang GCC is failing with "undefined reference" https://travis-ci.org/anko/xkbcat/jobs/636386190 for reasons I cannot comprehend or reproduce anywhere else, but clang is passing like it's supposed to, so I guess that's our life now. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 68afaf9..8206ef3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ dist: bionic language: c compiler: - - gcc - clang script: - make -- cgit v1.3-2-g0d8e