You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by mt...@apache.org on 2010/05/21 08:41:42 UTC

svn commit: r946904 - /trafficserver/traffic/trunk/configure.ac

Author: mturk
Date: Fri May 21 06:41:42 2010
New Revision: 946904

URL: http://svn.apache.org/viewvc?rev=946904&view=rev
Log:
Add some --with-architecture comments

Modified:
    trafficserver/traffic/trunk/configure.ac

Modified: trafficserver/traffic/trunk/configure.ac
URL: http://svn.apache.org/viewvc/trafficserver/traffic/trunk/configure.ac?rev=946904&r1=946903&r2=946904&view=diff
==============================================================================
--- trafficserver/traffic/trunk/configure.ac (original)
+++ trafficserver/traffic/trunk/configure.ac Fri May 21 06:41:42 2010
@@ -523,7 +523,8 @@ if test "x${GCC}" = "xyes"; then
   else
     case "$host_cpu" in
       x86_64 | amd64)
-        cpu_architecture="-march=native"
+        # XXX: Any need for 64-bit arch flags?
+        # cpu_architecture="-march=native"
       ;;
       *sparc*)
         cpu_architecture="-march=ultrasparc"
@@ -541,6 +542,8 @@ AC_ARG_WITH(architecture, [AC_HELP_STRIN
   if test "x$withval" != "xyes" && test "x$withval" != "xno"; then
     case "$withval" in
       -*)
+        # TODO: In case we are cross compiling some of the provided flags
+        #       should be added to the LDFLAGS
         cpu_architecture="$withval"
       ;;
       *)