hookman icon indicating copy to clipboard operation
hookman copied to clipboard

Change default linux compiler to gcc. not clang

Open arthursoprana opened this issue 5 years ago • 1 comments

Description

The current cmake configuration uses

if(NOT WIN32)
  set(CMAKE_C_COMPILER    clang)
  set(CMAKE_CXX_COMPILER  clang++)
  set(CMAKE_C_FLAGS       "-Wall -std=c99")
  set(CMAKE_C_FLAGS_DEBUG "-g")
endif(NOT WIN32)

I think it should be gcc instead of clang, if possible.

arthursoprana avatar Sep 05 '19 17:09 arthursoprana

I will work on it.

volpatto avatar Oct 12 '19 22:10 volpatto