Check for g++, not gcc and fix linking on Raspberry Pi

We actually need g++, not gcc. Also on the Pi the OpenGLES libs where
missing.
This commit is contained in:
Bim Overbohm 2013-05-24 11:36:29 +02:00
parent 30f5bf0dcf
commit c1c52e844a

View file

@ -57,10 +57,10 @@ if(MSVC)
endif()
if(CMAKE_COMPILER_IS_GNUCXX)
#check for GCC 4.7+
execute_process(COMMAND ${CMAKE_C_COMPILER} -dumpversion OUTPUT_VARIABLE GCC_VERSION)
if (GCC_VERSION VERSION_LESS 4.7)
message(SEND_ERROR "You need at least GCC 4.7 to compile EmulationStation!")
#check for G++ 4.7+
execute_process(COMMAND ${CMAKE_CXX_COMPILER} -dumpversion OUTPUT_VARIABLE G++_VERSION)
if (G++_VERSION VERSION_LESS 4.7)
message(SEND_ERROR "You need at least G++ 4.7 to compile EmulationStation!")
endif()
#set up compiler flags for GCC
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -O2") #support C++11 for std::, optimize
@ -230,6 +230,7 @@ if(DEFINED BCMHOST)
LIST(APPEND ES_LIBRARIES
bcm_host
EGL
${OPENGLES_LIBRARIES}
)
else()
if(MSVC)