From 72704441a24f7b758f8253003483c6d5e361abd0 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 1 Oct 2014 14:44:09 -0700 Subject: [PATCH] URLs: update URLs for GitHub --- HACKING | 25 ++++++++----------- .../vt/wrappers/mpic++-vt-wrapper-data.txt.in | 2 +- .../vt/wrappers/mpicc-vt-wrapper-data.txt.in | 2 +- .../wrappers/mpifort-vt-wrapper-data.txt.in | 2 +- ompi/mca/op/example/Makefile.am | 4 +-- ompi/mca/op/example/configure.m4 | 4 +-- .../tools/wrappers/mpic++-wrapper-data.txt.in | 2 +- ompi/tools/wrappers/mpicc-wrapper-data.txt.in | 2 +- .../wrappers/mpifort-wrapper-data.txt.in | 2 +- .../tools/wrappers/ortecc-wrapper-data.txt.in | 2 +- .../wrappers/shmemcc-wrapper-data.txt.in | 2 +- .../wrappers/shmemfort-wrapper-data.txt.in | 2 +- 12 files changed, 24 insertions(+), 27 deletions(-) diff --git a/HACKING b/HACKING index 6f62f71c6aa..e01f4dbed94 100644 --- a/HACKING +++ b/HACKING @@ -8,7 +8,7 @@ Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, University of Stuttgart. All rights reserved. Copyright (c) 2004-2005 The Regents of the University of California. All rights reserved. -Copyright (c) 2008-2012 Cisco Systems, Inc. All rights reserved. +Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved. Copyright (c) 2013 Intel, Inc. All rights reserved. $COPYRIGHT$ @@ -29,13 +29,10 @@ Debugging vs. Optimized Builds If you are building Open MPI from a Subversion checkout, the default build includes a lot of debugging features. This happens -automatically when when configure detects the hidden ".svn" Subversion -meta directory (that is present in all Subversion checkouts) in your -source tree, and therefore activates a number of developer-only -debugging features in the Open MPI code base. - -The same debugging features are activated if you build in a Git or -Mercurial clone (with the hidden ".git" or ".hg" meta directory). +automatically when when configure detects the hidden ".git" Git meta +directory (that is present in all Git clones) in your source tree, and +therefore activates a number of developer-only debugging features in +the Open MPI code base. By definition, debugging builds will perform [much] slower than optimized builds of Open MPI. You should *NOT* conduct timing tests @@ -47,7 +44,7 @@ developer's checkout, you have three main options: 1. Use the "--with-platform=optimized" switch to configure. This is the preferred (and probably easiest) method. For example: - shell$ svn co http://svn.open-mpi.org/svn/ompi/trunk ompi + shell$ git clone git@github.com:open-mpi/ompi.git shell$ cd ompi shell$ ./autogen.pl shell$ mkdir build @@ -57,10 +54,10 @@ developer's checkout, you have three main options: shell$ make all install 2. Use a VPATH build. Simply build Open MPI from a different - directory than the source tree -- one where the .svn / .git / .hg - subdirectory is not present. For example: + directory than the source tree -- one where the .git subdirectory + is not present. For example: - shell$ svn co http://svn.open-mpi.org/svn/ompi/trunk ompi + shell$ git clone git@github.com:open-mpi/ompi.git shell$ cd ompi shell$ ./autogen.pl shell$ mkdir build @@ -99,7 +96,7 @@ required depend on if you are using the trunk or a release branch (and which release branch you are using). The specific versions can be found at: - http://www.open-mpi.org/svn/building.php + http://www.open-mpi.org/source/building.php You can check what versions of the autotools you have installed with the following: @@ -111,7 +108,7 @@ shell$ libtoolize --version Required version levels for all the OMPI releases can be found here: -http://www.open-mpi.org/svn/building.php +http://www.open-mpi.org/source/building.php To strengthen the above point: the core Open MPI developers typically use very, very recent versions of the GNU tools. There are known bugs diff --git a/ompi/contrib/vt/wrappers/mpic++-vt-wrapper-data.txt.in b/ompi/contrib/vt/wrappers/mpic++-vt-wrapper-data.txt.in index fabd22fe629..01e7e94ddd2 100644 --- a/ompi/contrib/vt/wrappers/mpic++-vt-wrapper-data.txt.in +++ b/ompi/contrib/vt/wrappers/mpic++-vt-wrapper-data.txt.in @@ -2,7 +2,7 @@ # compiler flags (using the compiler_args key to chose which block # should be activated. This can be useful for multilib builds. See the # multilib page at: -# https://svn.open-mpi.org/trac/ompi/wiki/compilerwrapper3264 +# https://github.com/open-mpi/ompi/wiki/compilerwrapper3264 # for more information. project=Open MPI diff --git a/ompi/contrib/vt/wrappers/mpicc-vt-wrapper-data.txt.in b/ompi/contrib/vt/wrappers/mpicc-vt-wrapper-data.txt.in index 0799b96db08..ad720f16e05 100644 --- a/ompi/contrib/vt/wrappers/mpicc-vt-wrapper-data.txt.in +++ b/ompi/contrib/vt/wrappers/mpicc-vt-wrapper-data.txt.in @@ -2,7 +2,7 @@ # compiler flags (using the compiler_args key to chose which block # should be activated. This can be useful for multilib builds. See the # multilib page at: -# https://svn.open-mpi.org/trac/ompi/wiki/compilerwrapper3264 +# https://github.com/open-mpi/ompi/wiki/compilerwrapper3264 # for more information. project=Open MPI diff --git a/ompi/contrib/vt/wrappers/mpifort-vt-wrapper-data.txt.in b/ompi/contrib/vt/wrappers/mpifort-vt-wrapper-data.txt.in index b2ca1ac21a0..f9f55fd0d28 100644 --- a/ompi/contrib/vt/wrappers/mpifort-vt-wrapper-data.txt.in +++ b/ompi/contrib/vt/wrappers/mpifort-vt-wrapper-data.txt.in @@ -2,7 +2,7 @@ # compiler flags (using the compiler_args key to chose which block # should be activated. This can be useful for multilib builds. See the # multilib page at: -# https://svn.open-mpi.org/trac/ompi/wiki/compilerwrapper3264 +# https://github.com/open-mpi/ompi/wiki/compilerwrapper3264 # for more information. project=Open MPI diff --git a/ompi/mca/op/example/Makefile.am b/ompi/mca/op/example/Makefile.am index e819085c952..3499b39a4ae 100644 --- a/ompi/mca/op/example/Makefile.am +++ b/ompi/mca/op/example/Makefile.am @@ -9,7 +9,7 @@ # University of Stuttgart. All rights reserved. # Copyright (c) 2004-2005 The Regents of the University of California. # All rights reserved. -# Copyright (c) 2008-2010 Cisco Systems, Inc. All rights reserved. +# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved. # $COPYRIGHT$ # # Additional copyrights may follow @@ -21,7 +21,7 @@ # example of how to integrate into Open MPI's Automake-based build # system. # -# See https://svn.open-mpi.org/trac/ompi/wiki/devel/CreateComponent +# See https://github.com/open-mpi/ompi/wiki/devel-CreateComponent # for more details on how to make Open MPI components. # First, list all .h and .c sources. It is necessary to list all .h diff --git a/ompi/mca/op/example/configure.m4 b/ompi/mca/op/example/configure.m4 index 764e027ea7e..12c8c124ac3 100644 --- a/ompi/mca/op/example/configure.m4 +++ b/ompi/mca/op/example/configure.m4 @@ -10,7 +10,7 @@ # University of Stuttgart. All rights reserved. # Copyright (c) 2004-2005 The Regents of the University of California. # All rights reserved. -# Copyright (c) 2008-2010 Cisco Systems, Inc. All rights reserved. +# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved. # $COPYRIGHT$ # # Additional copyrights may follow @@ -31,7 +31,7 @@ # but it cannot be built. If it *not* a catastropic error if your # component cannot be built (but was not specifically requested). -# See https://svn.open-mpi.org/trac/ompi/wiki/devel/CreateComponent +# See https://github.com/open-mpi/ompi/wiki/devel-CreateComponent # for more details on how to make Open MPI components. # MCA_op_example_CONFIG([action-if-found], [action-if-not-found]) diff --git a/ompi/tools/wrappers/mpic++-wrapper-data.txt.in b/ompi/tools/wrappers/mpic++-wrapper-data.txt.in index ddeae4e73d0..d51f9f090da 100644 --- a/ompi/tools/wrappers/mpic++-wrapper-data.txt.in +++ b/ompi/tools/wrappers/mpic++-wrapper-data.txt.in @@ -2,7 +2,7 @@ # compiler flags (using the compiler_args key to chose which block # should be activated. This can be useful for multilib builds. See the # multilib page at: -# https://svn.open-mpi.org/trac/ompi/wiki/compilerwrapper3264 +# https://github.com/open-mpi/ompi/wiki/compilerwrapper3264 # for more information. project=Open MPI diff --git a/ompi/tools/wrappers/mpicc-wrapper-data.txt.in b/ompi/tools/wrappers/mpicc-wrapper-data.txt.in index e2bae058dab..8946f3acf47 100644 --- a/ompi/tools/wrappers/mpicc-wrapper-data.txt.in +++ b/ompi/tools/wrappers/mpicc-wrapper-data.txt.in @@ -2,7 +2,7 @@ # compiler flags (using the compiler_args key to chose which block # should be activated. This can be useful for multilib builds. See the # multilib page at: -# https://svn.open-mpi.org/trac/ompi/wiki/compilerwrapper3264 +# https://github.com/open-mpi/ompi/wiki/compilerwrapper3264 # for more information. project=Open MPI diff --git a/ompi/tools/wrappers/mpifort-wrapper-data.txt.in b/ompi/tools/wrappers/mpifort-wrapper-data.txt.in index 0aa728a735e..3eafc773fa1 100644 --- a/ompi/tools/wrappers/mpifort-wrapper-data.txt.in +++ b/ompi/tools/wrappers/mpifort-wrapper-data.txt.in @@ -2,7 +2,7 @@ # compiler flags (using the compiler_args key to chose which block # should be activated. This can be useful for multilib builds. See the # multilib page at: -# https://svn.open-mpi.org/trac/ompi/wiki/compilerwrapper3264 +# https://github.com/open-mpi/ompi/wiki/compilerwrapper3264 # for more information. project=Open MPI diff --git a/orte/tools/wrappers/ortecc-wrapper-data.txt.in b/orte/tools/wrappers/ortecc-wrapper-data.txt.in index 5fd71f030f7..fc5c8cab76c 100644 --- a/orte/tools/wrappers/ortecc-wrapper-data.txt.in +++ b/orte/tools/wrappers/ortecc-wrapper-data.txt.in @@ -2,7 +2,7 @@ # compiler flags (using the compiler_args key to chose which block # should be activated. This can be useful for multilib builds. See the # multilib page at: -# https://svn.open-mpi.org/trac/ompi/wiki/compilerwrapper3264 +# https://github.com/open-mpi/ompi/wiki/compilerwrapper3264 # for more information. project=Open Run-Time Environment (ORTE) diff --git a/oshmem/tools/wrappers/shmemcc-wrapper-data.txt.in b/oshmem/tools/wrappers/shmemcc-wrapper-data.txt.in index e74f463b020..d32673d13d6 100644 --- a/oshmem/tools/wrappers/shmemcc-wrapper-data.txt.in +++ b/oshmem/tools/wrappers/shmemcc-wrapper-data.txt.in @@ -11,7 +11,7 @@ # compiler flags (using the compiler_args key to chose which block # should be activated. This can be useful for multilib builds. See the # multilib page at: -# https://svn.open-mpi.org/trac/ompi/wiki/compilerwrapper3264 +# https://github.com/open-mpi/ompi/wiki/compilerwrapper3264 # for more information. project=Open SHMEM diff --git a/oshmem/tools/wrappers/shmemfort-wrapper-data.txt.in b/oshmem/tools/wrappers/shmemfort-wrapper-data.txt.in index c8f64f93e9c..cb3d61e25e9 100644 --- a/oshmem/tools/wrappers/shmemfort-wrapper-data.txt.in +++ b/oshmem/tools/wrappers/shmemfort-wrapper-data.txt.in @@ -11,7 +11,7 @@ # compiler flags (using the compiler_args key to chose which block # should be activated. This can be useful for multilib builds. See the # multilib page at: -# https://svn.open-mpi.org/trac/ompi/wiki/compilerwrapper3264 +# https://github.com/open-mpi/ompi/wiki/compilerwrapper3264 # for more information. project=Open SHMEM