Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/nn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancisco Massa <fvsmassa@gmail.com>2016-04-29 22:03:59 +0300
committerFrancisco Massa <fvsmassa@gmail.com>2016-04-29 22:03:59 +0300
commit496bf5cab1e9ec9d732ba92102915600301399b2 (patch)
tree135028528da92f09df70a75b19e41b96d842592d
parent7842027f2bf34e6c7360cd294ced3af0513d4550 (diff)
Fix CMakeLists for Intel compilers
-rw-r--r--lib/THNN/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/THNN/CMakeLists.txt b/lib/THNN/CMakeLists.txt
index 2cc1960..807b990 100644
--- a/lib/THNN/CMakeLists.txt
+++ b/lib/THNN/CMakeLists.txt
@@ -17,7 +17,7 @@ IF(MSVC)
ENDIF(MSVC)
IF (CMAKE_VERSION VERSION_LESS "3.1")
- SET(CMAKE_C_FLAGS "--std=c99 ${CMAKE_C_FLAGS}")
+ SET(CMAKE_C_FLAGS "-std=c99 ${CMAKE_C_FLAGS}")
ELSE ()
SET(CMAKE_C_STANDARD 99)
ENDIF ()