Commit ba696cf0 authored by jperaldi's avatar jperaldi

forcing gcc and g++ to be used instead of clang as proposed by Anurag. On my...

forcing gcc and g++ to be used instead of clang as proposed by Anurag. On my side if clang and gcc are there, default compiler is clang
parent 87184c0a
......@@ -29,6 +29,9 @@ project (OpenAirInterface LANGUAGES C CXX)
#########################################################
set (OPENAIR_DIR ${CMAKE_SOURCE_DIR})
include("cmake_targets/macros.cmake")
# System packages that are required
......@@ -164,6 +167,11 @@ set (OPENAIR_BIN_DIR ${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY})
project (OpenAirInterface)
set(CMAKE_C_COMPILER "/usr/bin/gcc")
set(CMAKE_CXX_COMPILER "/usr/bin/g++")
##############################################
# Base CUDA setting
##############################################
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment