[netperf-dev] netperf2 commit notice r58 - trunk

raj at netperf.org raj at netperf.org
Wed Mar 1 16:21:13 PST 2006


Author: raj
Date: 2006-03-01 16:21:11 -0800 (Wed, 01 Mar 2006)
New Revision: 58

Modified:
   trunk/README.windows
   trunk/configure
   trunk/configure.ac
Log:
Make the configure --help output prettier, and add some warnings about
issues with compiling under Windows


Modified: trunk/README.windows
===================================================================
--- trunk/README.windows	2006-02-27 18:48:38 UTC (rev 57)
+++ trunk/README.windows	2006-03-02 00:21:11 UTC (rev 58)
@@ -18,6 +18,9 @@
    NetPerf\objchk_wnet_IA64\IA64, NetServer\objchk_wnet_IA64\IA64
    NetPerf\objfre_wnet_x86\i386, or NetPerf\objfre_wnet_AMD64\amd64
 
+NOTE: If any components of the path (ie the full names of the files,
+including parent directories) contain spaces (eg "My Documents"),
+build will charge off into the weeds.
 
 And if that weren't enough, it is also known that netperf has been
 compiled using MS Visual Studio 2003.  Here are the instructions from

Modified: trunk/configure
===================================================================
--- trunk/configure	2006-02-27 18:48:38 UTC (rev 57)
+++ trunk/configure	2006-03-02 00:21:11 UTC (rev 58)
@@ -855,17 +855,22 @@
   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
   --disable-dependency-tracking Speeds up one-time builds
   --enable-dependency-tracking  Do not reject slow dependency extractors
-  --enable-histogram   include individual op timing, may affect result
-  --enable-demo   emit interim results during the run. May affect results.
-  --enable-unixdomain  include Unix Domain socket tests
-  --enable-dlpi  include Unix Domain socket tests
-  --enable-xti  include Unix Domain socket tests
-  --enable-exs  include ICSC async sockets tests
-  --enable-sctp   include tests to measure SCTP performance
-  --enable-intervals  include ability to pace operations, may affect result
-  --enable-spin  paces operations should sit and spin - WILL affect result
-  --enable-burst  include intial request burst ability in _RR tests, may affect result
-  --enable-cpuutil  include code to measure CPU utilization using specified mechanism
+  --enable-histogram      include individual op timing, may affect result
+  --enable-demo           emit interim results during the run. May affect
+                          results.
+  --enable-unixdomain     include Unix Domain socket tests
+  --enable-dlpi           include DLPI (link-layer) tests
+  --enable-xti            include XTI socket tests
+  --enable-exs            include ICSC async sockets tests
+  --enable-sctp           include tests to measure SCTP performance
+  --enable-intervals      include ability to pace operations, may affect
+                          result
+  --enable-spin           paces operations should sit and spin - WILL affect
+                          result
+  --enable-burst          include intial request burst ability in _RR tests,
+                          may affect result
+  --enable-cpuutil        include code to measure CPU utilization using
+                          specified mechanism
 
 Some influential environment variables:
   CC          C compiler command

Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac	2006-02-27 18:48:38 UTC (rev 57)
+++ trunk/configure.ac	2006-03-02 00:21:11 UTC (rev 58)
@@ -91,7 +91,7 @@
 AC_MSG_CHECKING(whether to include histogram support)
 
 AC_ARG_ENABLE(histogram,
-	[  --enable-histogram   include individual op timing, may affect result ])
+	[AS_HELP_STRING([--enable-histogram],[include individual op timing, may affect result]) ])
 
 case "$enable_histogram" in
 	yes)
@@ -126,7 +126,7 @@
 AC_MSG_CHECKING(whether to include demo support)
 
 AC_ARG_ENABLE(demo,
-	[  --enable-demo   emit interim results during the run. May affect results.])
+	[AS_HELP_STRING([--enable-demo],[emit interim results during the run. May affect results.])])
 
 case "$enable_demo" in
 	yes)
@@ -161,7 +161,7 @@
 AC_MSG_CHECKING(whether to include Unix-domain socket tests)
 
 AC_ARG_ENABLE(unixdomain,
-	[  --enable-unixdomain  include Unix Domain socket tests])
+	[AS_HELP_STRING([--enable-unixdomain],[include Unix Domain socket tests])])
 
 case "$enable_unixdomain" in
      yes)
@@ -195,7 +195,7 @@
 AC_MSG_CHECKING(whether to include DLPI tests)
 
 AC_ARG_ENABLE(dlpi,
-	[  --enable-dlpi  include Unix Domain socket tests])
+	[AS_HELP_STRING([--enable-dlpi],[include DLPI (link-layer) tests])])
 
 case "$enable_dlpi" in
      yes)
@@ -230,7 +230,7 @@
 AC_MSG_CHECKING(whether to include XTI tests)
 
 AC_ARG_ENABLE(xti,
-	[  --enable-xti  include Unix Domain socket tests])
+	[AS_HELP_STRING([--enable-xti],[include XTI socket tests])])
 
 case "$enable_xti" in
      yes)
@@ -266,7 +266,7 @@
 AC_MSG_CHECKING(whether to include ICSC-EXS tests)
 
 AC_ARG_ENABLE(exs,
-	[  --enable-exs  include ICSC async sockets tests])
+	[AS_HELP_STRING([--enable-exs],[include ICSC async sockets tests])])
 
 case "$enable_exs" in
      yes)
@@ -301,7 +301,7 @@
 
 
 AC_ARG_ENABLE(sctp,
-	[  --enable-sctp   include tests to measure SCTP performance ])
+	[AS_HELP_STRING([--enable-sctp],[include tests to measure SCTP performance ])])
 
 case "$enable_sctp" in
 	yes)
@@ -343,7 +343,7 @@
 AC_MSG_CHECKING([whether to include paced send (intervals) support])
 
 AC_ARG_ENABLE(intervals,
-	[  --enable-intervals  include ability to pace operations, may affect result])
+	[AS_HELP_STRING([--enable-intervals],[include ability to pace operations, may affect result])])
 
 case "$enable_intervals" in
 	yes)
@@ -377,7 +377,7 @@
 AC_MSG_CHECKING([whether paced sends should spin])
 
 AC_ARG_ENABLE(spin,
-	[  --enable-spin  paces operations should sit and spin - WILL affect result])
+	[AS_HELP_STRING([--enable-spin],[paces operations should sit and spin - WILL affect result])])
 
 case "$enable_spin" in
 	yes)
@@ -412,7 +412,7 @@
 AC_MSG_CHECKING([whether to include initial burst support in _RR tests])
 
 AC_ARG_ENABLE(burst,
-	[  --enable-burst  include intial request burst ability in _RR tests, may affect result])
+	[AS_HELP_STRING([--enable-burst],[include intial request burst ability in _RR tests, may affect result])])
 
 case "$enable_burst" in
 	yes)
@@ -446,7 +446,7 @@
 AC_MSG_CHECKING([which CPU utilization measurement type to use])
 
 AC_ARG_ENABLE(cpuutil,
-	[  --enable-cpuutil  include code to measure CPU utilization using specified mechanism])
+	[AS_HELP_STRING([--enable-cpuutil],[include code to measure CPU utilization using specified mechanism])])
 
 NETCPU_SOURCE="$enable_cpuutil"
 case "$enable_cpuutil" in



More information about the netperf-dev mailing list