Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tapasco
tapasco
Commits
d675e2be
Commit
d675e2be
authored
Jan 09, 2018
by
Jens Korinth
Browse files
setup.sh: use locate instead of find
parent
944b8844
Pipeline
#84
failed with stage
in 3 minutes and 40 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
setup.sh
View file @
d675e2be
...
...
@@ -19,12 +19,14 @@ fi
echo
"TAPASCO_HOME=
$TAPASCO_HOME
"
export
PATH
=
$TAPASCO_HOME
/bin:
$PATH
export
MANPATH
=
$MANPATH
:
$TAPASCO_HOME
/man
if
uname
-a
|
grep
-i
ubuntu
>
/dev/null 2>&1
;
then
if
find /usr/lib
-name
libmpfr.so
>
/dev/null 2>&1
;
then
export
LD_PRELOAD
=
`
find /usr/lib
-name
libmpfr.so 2>/dev/null
`
#if uname -a | grep -i ubuntu > /dev/null 2>&1; then
LIB
=
`
locate
-l
1 libmpfr
`
if
[[
$?
-eq
0
]]
;
then
export
LD_PRELOAD
=
$LIB
echo
"LD_PRELOAD=
$LIB
"
else
echo
"WARNING: awk in Ubuntu Linux is incompatible with Vivado's old libmpfr.so"
>
&2
echo
"This can be fixed by pre-loading a new libmpfr.so, but none was found in /usr/lib."
>
&2
echo
"If you run into problems (awk: symbols not found), please install libmpfr."
fi
fi
#
fi
Jens Korinth
@jk
mentioned in commit
17f0d672
·
Mar 05, 2018
mentioned in commit
17f0d672
mentioned in commit 17f0d67240ebf5d7e1d0be9162d272b04256c47d
Toggle commit list
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