0001-disable-double-promotion.patch 1.1 KB

123456789101112131415161718192021
  1. Don't use -Wdouble-promotion gcc option
  2. The warning flag isn't recognized for older GCC versions (blackfin),
  3. so just disable it.
  4. Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
  5. [Gustavo: update for 1.3.5]
  6. diff -Nura graphite2-1.3.5.orig/src/CMakeLists.txt graphite2-1.3.5/src/CMakeLists.txt
  7. --- graphite2-1.3.5.orig/src/CMakeLists.txt 2016-02-15 11:46:45.941906112 -0300
  8. +++ graphite2-1.3.5/src/CMakeLists.txt 2016-02-15 11:46:54.237194222 -0300
  9. @@ -111,9 +111,6 @@
  10. COMPILE_FLAGS "-Wall -Wextra -Wno-unknown-pragmas -Wendif-labels -Wshadow -Wctor-dtor-privacy -Wnon-virtual-dtor -fno-rtti -fno-exceptions -fvisibility=hidden -fvisibility-inlines-hidden -fno-stack-protector"
  11. LINK_FLAGS "-nodefaultlibs ${GRAPHITE_LINK_FLAGS}"
  12. LINKER_LANGUAGE C)
  13. - if (CMAKE_COMPILER_IS_GNUCXX)
  14. - add_definitions(-Wdouble-promotion)
  15. - endif (CMAKE_COMPILER_IS_GNUCXX)
  16. message(STATUS "Compiler ID is: ${CMAKE_CXX_COMPILER_ID}")
  17. if (${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang")
  18. add_definitions(-Wimplicit-fallthrough)