summaryrefslogtreecommitdiffstats
path: root/cluster/atlas/CONFIGURE
diff options
context:
space:
mode:
Diffstat (limited to 'cluster/atlas/CONFIGURE')
-rwxr-xr-xcluster/atlas/CONFIGURE13
1 files changed, 13 insertions, 0 deletions
diff --git a/cluster/atlas/CONFIGURE b/cluster/atlas/CONFIGURE
new file mode 100755
index 0000000000..72d9da5cb6
--- /dev/null
+++ b/cluster/atlas/CONFIGURE
@@ -0,0 +1,13 @@
+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