https://github.com/Microsoft/CNTK
Revision 3a35b6f6c7afcced94bfa72f0253fd8d4a778f3a authored by Yang Chen on 17 August 2018, 21:29:37 UTC, committed by Yang Chen on 17 August 2018, 22:09:40 UTC
-pedantic options is not an option that can be ignored.
GCC 6.x and above issued warnings (and hence errors) while building
CNTK:

  error: pedantic is not an option that controls warnings.
1 parent 9040c9d
Raw File
Tip revision: 3a35b6f6c7afcced94bfa72f0253fd8d4a778f3a authored by Yang Chen on 17 August 2018, 21:29:37 UTC
pedantic option cannot be ignored
Tip revision: 3a35b6f
CMakeLists.txt
cmake_minimum_required(VERSION 3.8)

project(CNTK)

include(Tools/cmake/options.cmake REQUIRED)
include(Tools/cmake/common.cmake REQUIRED)
include(Tools/cmake/cntk_common.cmake REQUIRED)

add_subdirectory(bindings/csharp/swig)

include(Tools/cmake/debug.cmake REQUIRED)
back to top