From 637579b3469e120229668563dce6d21368db4f2a Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Tue, 25 Aug 2020 12:01:33 +0200 Subject: [PATCH] Revert "kaleidoscope-builder: Allow easily selecting a compiler" This reverts commit 56a729260f7f23dd87ab88f45ce029616ff2109b. --- etc/kaleidoscope-builder.conf | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/etc/kaleidoscope-builder.conf b/etc/kaleidoscope-builder.conf index d3c310aa..01a2e77e 100644 --- a/etc/kaleidoscope-builder.conf +++ b/etc/kaleidoscope-builder.conf @@ -35,23 +35,6 @@ if [ -z "${FQBN}" ]; then FQBN="${FQBN:-keyboardio:avr:${BOARD}}" fi -if [ ! -z "${KALEIDOSCOPE_COMPILER}" ]; then - case "${KALEIDOSCOPE_COMPILER}" in - gnu|gcc|g++) - C_COMPILER_BASENAME=gcc - CXX_COMPILER_BASENAME=g++ - ;; - clang) - C_COMPILER_BASENAME=clang - CXX_COMPILER_BASENAME=clang++ - ;; - *) - echo "Unsupported compiler: ${KALEIDOSCOPE_COMPILER}" >&2 - exit 1 - ;; - esac -fi - ######## ######## Host OS specific commands ########