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

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Langford <jl@hunch.net>2014-06-19 04:33:05 +0400
committerJohn Langford <jl@hunch.net>2014-06-19 04:33:05 +0400
commit9a0b3c5d9a95d8e31c711853b6595435981c90a6 (patch)
treeaad185a86eb78732371e647fa6173f366e56c858 /cluster
parentb2b702ceced1d21989afb7fce6c5f81804aaed7b (diff)
better name for reg_mode_odd
Diffstat (limited to 'cluster')
-rw-r--r--cluster/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/cluster/Makefile b/cluster/Makefile
index 1b523f22..bc852fd0 100644
--- a/cluster/Makefile
+++ b/cluster/Makefile
@@ -4,8 +4,8 @@ ifneq ($(CXX),)
ARCH = -D__extern_always_inline=inline
else
CXX = g++
- $(warning Using g++)
- ARCH = $(shell test `g++ -v 2>&1 | tail -1 | cut -d ' ' -f 3 | cut -d '.' -f 1,2` \< 4.3 && echo -march=nocona || echo -march=native)
+# $(warning Using g++)
+ARCH = $(shell test `g++ -v 2>&1 | tail -1 | cut -d ' ' -f 3 | cut -d '.' -f 1,2` \< 4.3 && echo -march=nocona || echo -march=native)
endif
ifeq ($(CXX),)