diff options
author | midipix <writeonce@midipix.org> | 2021-05-26 03:03:52 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-26 14:37:35 +0000 |
commit | 8cce0bc2133951742cc8227784c52a58f788a7cb (patch) | |
tree | 6456ead31d42ec63e9c14a78b1df22f4ead08a69 | |
parent | 43357c5f274fee9e7806069090f857d63138330a (diff) | |
download | sofort-8cce0bc2133951742cc8227784c52a58f788a7cb.tar.bz2 sofort-8cce0bc2133951742cc8227784c52a58f788a7cb.tar.xz |
build system: ccenv: ccenv_set_c_compiler_candidates(): favor modern drivers.
-rw-r--r-- | sofort/ccenv/ccenv.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index efe19d7..aecbe9f 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -440,7 +440,7 @@ ccenv_set_c_compiler_candidates() ccenv_candidates="$mb_toolchain c99 c11 cc gcc clang" else - ccenv_candidates="c99 c11 cc gcc clang" + ccenv_candidates="cc gcc clang c99 c11" fi } |