Editing Building from SVN

From BRL-CAD

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
*****  BRL-CAD Recently moved from SVN to Github. Building from SVN works as of 3 Jul 2021, but you may need to build from Github in the future. ***
+
== Obtain the sources ==
  
== Obtain the sources via Subversion ==
+
BRL-CAD has recently [[Cvs2svn|switched from CVS to the Subversion system]]. In the new system some of the earlier complexities inherent to CVS are gone - no -dP option is required and developers will not need their passwords or usernames until it is time to commit a change.
  
For Windows:
+
For non-developers:
 +
:<code>% svn checkout https://brlcad.svn.sourceforge.net/svnroot/brlcad/brlcad/trunk brlcad </code>
  
Install a Subversion client for Windows, such as TortoiseSVN: https://sourceforge.net/projects/tortoisesvn/
+
Note: If you do not yet have an SVN client installed, go to http://subversion.tigris.org for information on obtaining an appropriate SVN client for your platform. Most modern Linux distributions will also have SVN available in their package repositories.
  
To get a checkout after installing TortoiseSVN, right-click in a folder where you want to download the sources, select SVN Checkout and specify https://svn.code.sf.net/p/brlcad/code/brlcad/trunk for the repository URL.
+
== Generate the configure script ==
 +
<code>% cd brlcad</code>
 +
<code>% ./autogen.sh</code>
  
For Linux/Mac/BSD:
+
=== An Example of Mac OS X 10.5.3 ===
<pre>svn checkout https://svn.code.sf.net/p/brlcad/code/brlcad/trunk brlcad</pre>
+
You need to do " sudo port install libtool" to get GNU version of libtool.
 +
<code>
 +
imac:brlcad tj_yang$ sudo ln -s /opt/local/bin/glibtoolize /usr/bin/libtoolize
 +
Password:
 +
imac:brlcad tj_yang$ ./autogen.sh
 +
Preparing the BRL-CAD build system...please wait
  
Note: If you do not yet have an SVN client installed, go to http://subversion.tigris.org for information on obtaining an appropriate SVN client for your platform. Most modern Linux/BSD/UNIX distributions will also have SVN available in their package repositories.
+
Found GNU Autoconf version 2.61
 +
Found GNU Automake version 1.10
 +
Found GNU Libtool version 1.5.26
  
== Configure the build system with CMake ==
+
Automatically preparing build ... done
  
BRL-CAD also requires the build tool CMake. Most Linux/BSD/UNIX systems provide a package for CMake. For platforms that do not, CMake is available from http://www.cmake.org
+
The BRL-CAD build system is now prepared. To build here, run:
 +
  ./configure
 +
  make
 +
imac:brlcad tj_yang$
  
Once installed, create a directory where you will compile BRL-CAD and run CMake.
+
</code>
  
For Windows, you can use the CMake GUI where you specify build and source directories:[[File:Running_cmake_on_windows.png|200px|thumb|right|Running CMake GUI on Windows]]
+
== Configure the build system ==
 +
<code>% ./configure --help</code>
 +
<code>% ./configure --prefix=install_dir --enable-optimized</code>
  
For Linux/Mac/BSD, this looks like:
+
When building for multiuser file servers it is often useful to make the install_dir reflect the version and/or architecture of the compile.  This way a single server can provide multiple versions of BRL-CAD or multiple binary formats for various architectures.  Symbolic links are then usually added to point to the "current" or "main" version that is preferable to provide so that users only need to add /usr/brlcad/bin to their path. Examples include:
  
cd brlcad
+
;By version
mkdir build
+
:/usr/brlcad/rel-7.8.0 (release 7.8.0)
cd build
+
:/usr/brlcad/rel-7.6.0 (release 7.6.0)
cmake .. (for a default build)
 
cmake .. -DBRLCAD_BUNDLED_LIBS=ON -DCMAKE_BUILD_TYPE=Release (for a release build)
 
  
== Compile and test your build ==
+
;By architecture
 +
:/usr/brlcad/ia32 (linux on Pentium)
 +
:/usr/brlcad/ia64 (linux on Itanium)
 +
:/usr/brlcad/x86_64 (linux on Opteron)
  
On Windows, simply open the "BRLCAD" solution and Compile.
+
;By version and architecture
 +
:/usr/brlcad/rel-7.8.0/mips32 (IRIX on MIPS in 32-bit mode, release 7.8.0)
 +
:/usr/brlcad/rel-7.8.0/mips64 (IRIX on MIPS in 64-bit mode, release 7.8.0)
 +
:/usr/brlcad/rel-7.8.2/mips32 (IRIX on MIPS in 32-bit mode, release 7.8.2)
  
On Linux/Mac/BSD, run this in your build directory:
+
IMPORTANT!!! - Because BRL-CAD has such a long development history, it predates some library naming conventions in modern operating systems. This means an attempt to configure for an install in the "/usr" path on Linux (for example) will stand a good chance of damaging important system libraries - e.g. BRL-CAD libraries put in "/usr/lib" may overwrite system libraries with the same names. Using "/usr/brlcad" or "/opt/brlcad" means all installed files will be safely contained in the brlcad directory.
  
make
+
== Compile and test your build ==
 
+
<code>% make</code>
If there are no compilation errors, you can test via:
 
 
 
make test
 
  
You can also run a performance test:
+
At this point, you should have a fully installed and working system. You can test things by doing:
  
make benchmark
+
<code>% make test</code>
 +
<code>% make benchmark</code>
  
 
Both the test and benchmark should report successfully if everything is working correctly. Report any failures to the BRL-CAD [http://sourceforge.net/tracker/?group_id=105292&atid=640802 bug tracker].
 
Both the test and benchmark should report successfully if everything is working correctly. Report any failures to the BRL-CAD [http://sourceforge.net/tracker/?group_id=105292&atid=640802 bug tracker].
  
 +
== Install ==
 +
<code>% make install</code>
  
== Doxygen (OPTIONAL) ==
+
If you created a prefix as described above for multiple versions or multiple architectures, you should now create your symbolic links for user convenience and consistency. Example where /usr/brlcad/rel-7.8.0/mips32 was used as the install_dir prefix:
If you have doxygen installed somewhere CMake can find it, then you can build a browsable HTML documentation of the source code.  This is useful if you want to use BRL-CAD's libraries directly, or if you just want a better overview of how things are structured.
 
 
 
To build the HTML files on a Linux/Mac/BSD system, run (from your build directory):
 
 
 
make dox
 
 
 
and then open doc/doxygen_output/html/index.xhtml with your web browser of choice.
 
 
 
== Install (OPTIONAL) ==
 
 
 
On all systems, you can simply run directly from the build directory without installing.
 
 
 
That said, by default BRL-CAD installs into /usr/brlcad or /opt/brlcad on Linux/Mac/BSD and into the standard program directory on Windows.  To check your build or install of BRL-CAD, browse to the "bin" directory from the GUI or from cmd.exe and run "mged".
 
  
== Setup environment (OPTIONAL) ==
+
<pre>% ln -s rel-7.8.0/mips32 /usr/brlcad/stable
 +
% ln -s stable/bin /usr/brlcad/bin
 +
% ln -s stable/include /usr/brlcad/include
 +
% ln -s stable/lib /usr/brlcad/lib
 +
% ln -s stable/man /usr/brlcad/man
 +
% ln -s stable/share /usr/brlcad/share
 +
% ls -l /usr/brlcad
 +
total 48
 +
lrwxr-xr-x  1 root  wheel  10 12 Apr 09:00 bin -> stable/bin
 +
lrwxr-xr-x  1 root  wheel  14 12 Apr 09:00 include -> stable/include
 +
lrwxr-xr-x  1 root  wheel  10 12 Apr 09:00 lib -> stable/lib
 +
lrwxr-xr-x  1 root  wheel  10 12 Apr 09:00 man -> stable/man
 +
drwxr-xr-x  7 root  wheel  238 11 Apr 18:00 rel-7.8.0
 +
lrwxr-xr-x  1 root  wheel  12 12 Apr 09:00 share -> stable/share
 +
lrwxr-xr-x  1 root  wheel    9 12 Apr 09:00 stable -> rel-7.8.0/mips32</pre>
  
At this point, all that remains is setting your system PATH environment variable so BRL-CAD utilities can be found.  Installation does not set PATH for you automatically.
+
''Future versions of BRL-CAD may provide this symbolic link operation for you as a configure option. Keep an eye out in the configure --help output.''
  
For Windows, setting PATH can be helpful but isn't necessary.  Simply navigate to where you installed BRL-CAD and run from there.
+
== Setup environment (optional) ==
 
+
At this point, everything should be ready for use. If the default prefix of /usr/brlcad was used or if the corresponding symbolic links were created, users should only need to add /usr/brlcad/bin to their PATH in order to find binaries for the package (optionally setting their MANPATH as well):
For Linux/Mac/BSD, you'll either need to specify full paths to applications (e.g., /usr/brlcad/bin/rt) or set your PATH. If the default installation prefix (/usr/brlcad or /opt/brlcad) was used, you should only need to add /usr/brlcad/bin to your PATH in order to find applications (optionally setting MANPATH as well):
 
  
 
For bash:
 
For bash:
  
export PATH="/usr/brlcad/bin:$PATH"
+
<pre>% export PATH=/usr/brlcad/bin:$PATH
export MANPATH="/usr/brlcad/man:$MANPATH"
+
% export MANPATH=/usr/brlcad/man:$MANPATH</pre>
  
 
For csh/tcsh:
 
For csh/tcsh:
  
set path=( /usr/brlcad/bin $path )
+
<pre>% set path=( /usr/brlcad/bin $path )
setenv MANPATH "/usr/brlcd/man:$MANPATH"
+
% setenv MANPATH /usr/brlcd/man:$MANPATH
rehash
+
% rehash</pre>
 
 
To find BRL-CAD manual pages without setting your MANPATH, use the provided "brlman" binary instead of "man" (e.g., /usr/brlcad/bin/brlman rt).
 
  
 +
If users do not want to modify their PATH, they can get by providing the full path to the binaries (e.g. /usr/brlcad/bin/mged). To find BRL-CAD manual pages without setting your MANPATH, use the provided "brlman" binary instead of "man".
  
== Test your Build ==
+
== Test installation ==
 +
If everything went well, there should now be more than 400 command-line applications at your disposal for processing images and geometry. A quick test of functionality (and performance) is to run the BRL-CAD benchmark again, which is installed as the benchmark tool:
  
If compilation went well, there should now be more than 400 command-line applications at your disposal for processing images and geometry.  You should be able to run the main modeling application:
+
<code>% benchmark</code>
  
mged
+
Additionally, you can run the MGED solid modeler:
  
If you didn't install, you may need to specify the path to the tool (e.g., "bin/mged") from the build directory.
+
<code>% mged</code>
  
 
[[Category:Documentation]]
 
[[Category:Documentation]]

Please note that all contributions to BRL-CAD may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see BRL-CAD:Copyrights for details). Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)