Skip to content

Commit

Permalink
Changed default compiler.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabrizioferrandi committed Apr 12, 2024
1 parent 489fb4c commit 8bcf523
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/wrapper/compiler/compiler_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2979,7 +2979,9 @@ int CompilerWrapper::getCompatibleCompilers()
int CompilerWrapper::getDefaultCompiler()
{
return
#if HAVE_I386_CLANG7_COMPILER && defined(_WIN32)
#if HAVE_I386_CLANG16_COMPILER
static_cast<int>(CompilerWrapper_CompilerTarget::CT_I386_CLANG16);
#elif HAVE_I386_CLANG7_COMPILER && defined(_WIN32)
static_cast<int>(CompilerWrapper_CompilerTarget::CT_I386_CLANG7);
#elif HAVE_I386_GCC49_COMPILER
static_cast<int>(CompilerWrapper_CompilerTarget::CT_I386_GCC49);
Expand Down Expand Up @@ -3011,8 +3013,6 @@ int CompilerWrapper::getDefaultCompiler()
static_cast<int>(CompilerWrapper_CompilerTarget::CT_I386_CLANG12);
#elif HAVE_I386_CLANG13_COMPILER
static_cast<int>(CompilerWrapper_CompilerTarget::CT_I386_CLANG13);
#elif HAVE_I386_CLANG16_COMPILER
static_cast<int>(CompilerWrapper_CompilerTarget::CT_I386_CLANG16);
#elif HAVE_I386_CLANGVVD_COMPILER
static_cast<int>(CompilerWrapper_CompilerTarget::CT_I386_CLANGVVD);
#else
Expand Down

0 comments on commit 8bcf523

Please sign in to comment.