File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,29 +8,32 @@ yum install devtoolset-6
88source /opt/rh/devtoolset-6/enable # to be added to your .bashrc
99```
1010
11- Setup alibuild (see [ here] ( https://alisw.github.io/alibuild/o2-tutorial.html ) for details):
11+ For development we use alibuild (see [ here] ( https://alisw.github.io/alibuild/o2-tutorial.html ) for details).
1212
1313```
14+ # Install alibuild
1415sudo pip install alibuild==1.4.0 # or a later version
16+
17+ # Check out flpproto repository
1518mkdir -p $HOME/alice
1619cd $HOME/alice
1720aliBuild init flpproto
18- ```
1921
20- Check what dependencies you are missing and you would like to add.
22+ # Check what dependencies you are missing and you would like to add.
23+ aliDoctor --defaults o2-daq flpproto
2124
22- aliDoctor --defaults o2-daq flpproto
23-
24- Build dependencies and flp prototype
25+ # Build dependencies and flp prototype
26+ aliBuild --defaults o2-daq build flpproto
27+ ```
2528
26- aliBuild --defaults o2-daq build flpproto
29+ ### Post installation
2730
28- Load environment to use or develop
31+ Load environment to use or develop (add it to .bashrc if you wish)
2932
30- ALICE_WORK_DIR=$HOME/alice/sw; eval "`alienv shell-helper`" # Add it to .bashrc
33+ ALICE_WORK_DIR=$HOME/alice/sw; eval "`alienv shell-helper`"
3134 alienv load flpproto/latest
3235
33- ### Post installation items
36+ Start and populate database :
3437
3538```
3639sudo systemctl start mariadb
You can’t perform that action at this time.
0 commit comments