Difference between revisions of "Installation/Linux/foam-extend-4.1/Ubuntu"

From OpenFOAMWiki
Line 16: Line 16:
 
</bash>
 
</bash>
  
Then follow the instructions on the previous page, subsection [[Installation/Linux/foam-extend-4.1#Installing from source code|Get the source code]], but keep in mind to run a few additional commands '''before''' you run '''{{tt|source etc/bashrc}}'''... More specifically, the commands should be executed something like this:
+
Then follow the instructions on the previous page, subsection [[Installation/Linux/foam-extend-4.1#Installing from source code|Get the source code]]. Ubuntu 18.04 LTS comes with gcc/g++ 7.4.0 as default, so does not need any other adaptation of the standard process.
<bash>cd ~/foam/foam-extend-4.1
+
 
+
echo "export WM_CC='gcc-7'"  >> etc/prefs.sh
+
echo "export WM_CXX='g++-7'"  >> etc/prefs.sh
+
 
+
source etc/bashrc</bash>
+
 
+
Then before running {{tt|Allwmake.firstInstall}}, run the following commands:
+
<bash>sed -i -e 's=rpmbuild --define=rpmbuild --define "_build_id_links none" --define=' ThirdParty/tools/makeThirdPartyFunctionsForRPM
+
sed -i -e 's/gcc/\$(WM_CC)/' wmake/rules/linux64Gcc/c
+
sed -i -e 's/g++/\$(WM_CXX)/' wmake/rules/linux64Gcc/c++
+
</bash>
+
  
 
== Ubuntu 19.10 ==
 
== Ubuntu 19.10 ==
Line 39: Line 27:
 
</bash>
 
</bash>
  
Then follow the instructions on the previous page, subsection [[Installation/Linux/foam-extend-4.1#Installing from source code|Get the source code]], but keep in mind to run a few additional commands '''before''' you run '''{{tt|source etc/bashrc}}'''... More specifically, the commands should be executed something like this:
+
Then follow the instructions on the previous page, subsection [[Installation/Linux/foam-extend-4.1#Installing from source code|Get the source code]], but keep in mind to run a few additional commands '''before''' you run '''{{tt|source etc/bashrc}}''' in order to set the environment for gcc/g++ 7 to be used instead of gcc/g++ 9. More specifically, the commands should be executed something like this:
 +
 
 
<bash>cd ~/foam/foam-extend-4.1
 
<bash>cd ~/foam/foam-extend-4.1
  

Revision as of 12:57, 26 November 2019

1 Introduction

This page is dedicated to preparing an Ubuntu system for installing the foam-extend project OF Version 41ext.png.


2 Ubuntu versions

2.1 Ubuntu 18.04

Run the following commands:

sudo apt-get update
sudo apt-get install git-core build-essential binutils-dev cmake flex \
zlib1g-dev qt4-dev-tools libqt4-dev libncurses5-dev curl bison \
libxt-dev rpm mercurial graphviz python python-dev

Then follow the instructions on the previous page, subsection Get the source code. Ubuntu 18.04 LTS comes with gcc/g++ 7.4.0 as default, so does not need any other adaptation of the standard process.

2.2 Ubuntu 19.10

Run the following commands:

sudo apt-get update
sudo apt-get install git-core build-essential binutils-dev cmake flex \
zlib1g-dev qt4-dev-tools libqt4-dev libncurses5-dev curl bison\
libxt-dev rpm mercurial graphviz python python-dev  gcc-7 g++-7

Then follow the instructions on the previous page, subsection Get the source code, but keep in mind to run a few additional commands before you run source etc/bashrc in order to set the environment for gcc/g++ 7 to be used instead of gcc/g++ 9. More specifically, the commands should be executed something like this:

cd ~/foam/foam-extend-4.1
 
echo "export WM_CC='gcc-7'"  >> etc/prefs.sh
echo "export WM_CXX='g++-7'"  >> etc/prefs.sh
 
source etc/bashrc

Then before running Allwmake.firstInstall, run the following commands:

sed -i -e 's=rpmbuild --define=rpmbuild --define "_build_id_links none" --define=' ThirdParty/tools/makeThirdPartyFunctionsForRPM
sed -i -e 's/gcc/\$(WM_CC)/' wmake/rules/linux64Gcc/c
sed -i -e 's/g++/\$(WM_CXX)/' wmake/rules/linux64Gcc/c++