summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcluster/atlas/BUILD7
-rwxr-xr-xcluster/atlas/CONFIGURE9
-rw-r--r--cluster/atlas/HISTORY3
3 files changed, 3 insertions, 16 deletions
diff --git a/cluster/atlas/BUILD b/cluster/atlas/BUILD
index e16378d5e7..5454aa5760 100755
--- a/cluster/atlas/BUILD
+++ b/cluster/atlas/BUILD
@@ -2,13 +2,6 @@ cd $SOURCE_DIRECTORY/bld &&
if is_depends_enabled $SPELL lapack; then
OPTS="--with-netlib-lapack=$INSTALL_ROOT/usr/lib/liblapack.a $OPTS"
fi &&
-if [ $WALL_TIMER == y ]; then
- if [[ ${SMGL_COMPAT_ARCHS[1]} == "ia32" || ${SMGL_COMPAT_ARCHS[1]} == "x86_64" ]]; then
- OPTS="-D c -DPentiumCPS=$CPU_FREQ $OPTS"
- else
- OPTS="-D c -DWALL $OPTS"
- fi
-fi &&
../configure -Si cputhrchk 0 \
-Fa alg -fPIC \
diff --git a/cluster/atlas/CONFIGURE b/cluster/atlas/CONFIGURE
index 72d9da5cb6..13ae5e6b7b 100755
--- a/cluster/atlas/CONFIGURE
+++ b/cluster/atlas/CONFIGURE
@@ -2,12 +2,3 @@ config_query SHARED_LIB "Do you want shared libraries to be built?" y
if [ $SHARED_LIB == y ]; then
config_query PTSHARED_LIB "Do you want parallelized shared libraries to be built?" y
fi
-
-config_query WALL_TIMER "Do you want to enable wall timer? (if your comupter load is not high, this will provide a higher resolution timer)" y
-
-# Haven't tried with other archs than ia32 yet
-if [ $WALL_TIMER == y ]; then
- if [[ ${SMGL_COMPAT_ARCHS[1]} == "ia32" || ${SMGL_COMPAT_ARCHS[1]} == "x86_64" ]]; then
- config_query_string CPU_FREQ "What is your CPU frequency in MHz?" 1000
- fi
-fi
diff --git a/cluster/atlas/HISTORY b/cluster/atlas/HISTORY
index 2c2d89f4f5..4a16aecd96 100644
--- a/cluster/atlas/HISTORY
+++ b/cluster/atlas/HISTORY
@@ -1,3 +1,6 @@
+2011-05-13 Peng Chang (Charles) <chp@sourcemage.org>
+ * BUILD, CONFIGURE: clean up ineffective options
+
2009-05-17 Peng Chang (Charles) <chp516@gmail.com>
* BUILD: changed accordingly
* CONFIGURE: added this file to query various options