Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
taste-setup
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TASTE
taste-setup
Commits
900e8302
Commit
900e8302
authored
Feb 21, 2017
by
Thanassis Tsiodras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Installing POHIC and POHIAda
parent
d3a1baa3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
0 deletions
+40
-0
install/40_ocarina.sh
install/40_ocarina.sh
+15
-0
install/45_pohi.sh
install/45_pohi.sh
+15
-0
install/common.sh
install/common.sh
+10
-0
No files found.
install/40_ocarina.sh
0 → 100755
View file @
900e8302
#!/bin/bash
DIR
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
&&
pwd
)
"
.
${
DIR
}
/common.sh
# Setup the tools in ~/.local/bin
cd
$DIR
/../ocarina
||
exit
1
make distclean
# ignore any errors here
./support/reconfig
||
exit
1
./configure
--prefix
=
${
PREFIX
}
||
exit
1
make
||
exit
1
make
install
# Add Ocarina to PATH
PATH_CMD
=
'export PATH=$PATH:'
"
${
PREFIX
}
/bin"
UpdatePATH
install/45_pohi.sh
0 → 100755
View file @
900e8302
#!/bin/bash
DIR
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
&&
pwd
)
"
.
${
DIR
}
/common.sh
# Setup the tools in ~/.local/bin
cd
$DIR
/../polyorb-hi-c
||
exit
1
make distclean
# ignore any errors here
./support/reconfig
||
exit
1
PATH
=
${
PREFIX
}
/bin:
${
PATH
}
./configure
||
exit
1
make
||
exit
1
make
install
# Add POHI to PATH
PATH_CMD
=
'export PATH=$PATH:'
"
${
PREFIX
}
/bin"
UpdatePATH
install/common.sh
0 → 100755
View file @
900e8302
TASTE_PATHS
=
$HOME
/.bashrc.taste
PREFIX
=
$HOME
/tool-inst
UpdatePATH
()
{
if
[
-z
"
${
PATH_CMD
}
"
]
;
then
echo
You forgot to
set
your PATH_CMD. Aborting...
exit
1
fi
grep
"
${
PATH_CMD
}
"
${
TASTE_PATHS
}
>
/dev/null
||
echo
"
${
PATH_CMD
}
"
>>
${
TASTE_PATHS
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment