Update of /cvsroot/openvrml/openvrml
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29201
Modified Files:
README.build_from_cvs
Added Files:
bootstrap configure-gcc-dbg configure-gcc-opt
Removed Files:
bootstrap.sh
Log Message:
Added scripts to invoke configure with frequently used options.
Index: README.build_from_cvs
===================================================================
RCS file: /cvsroot/openvrml/openvrml/README.build_from_cvs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** README.build_from_cvs 29 Mar 2006 07:48:36 -0000 1.3
--- README.build_from_cvs 29 Mar 2006 08:11:53 -0000 1.4
***************
*** 1,10 ****
1. Execute the script bootstrap.sh:
! $ ./bootstrap.sh
Note: You may need to make the script executable before you can do
this:
! $ chmod a+x bootstrap.sh
2. Make a directory to store the build files, and change to that
--- 1,10 ----
1. Execute the script bootstrap.sh:
! $ ./bootstrap
Note: You may need to make the script executable before you can do
this:
! $ chmod +x bootstrap
2. Make a directory to store the build files, and change to that
***************
*** 19,22 ****
--- 19,29 ----
$ ../configure
+ Note: The convenience scripts "configure-gcc-dbg" and
+ "configure-gcc-opt" simply invoke "configure" (as above) with some
+ frequently used options for debugging and optimized builds,
+ respectively, using the GNU compiler. Read INSTALL for more
+ information on using "configure".
+
+
4. Build it:
--- bootstrap.sh DELETED ---
--- NEW FILE: bootstrap ---
autoreconf --install --symlink
--- NEW FILE: configure-gcc-dbg ---
#!/bin/bash
./$(dirname $0)/configure -C --disable-static CXXFLAGS='-g -O0 -Wall -Wextra -Wno-missing-braces' $*
--- NEW FILE: configure-gcc-opt ---
#!/bin/bash
./$(dirname $0)/configure -C --disable-static --disable-exception-specs CXXFLAGS='-Os -Wall -Wextra -Wno-missing-braces -fvisibility=hidden' $*
|