Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
yaskovet
openfpm_pdata
Commits
36b2e2f2
Commit
36b2e2f2
authored
May 09, 2021
by
incardon
Browse files
Adding missing script
parent
b958b0da
Changes
3
Hide whitespace changes
Inline
Side-by-side
install
View file @
36b2e2f2
...
...
@@ -460,7 +460,7 @@ fi
################ Parallel debugger #######################
echo
"Installing parallel debugger"
install_gdbgui
install_gdbgui
$i_dir
###########################################################
...
...
script/install_gdbgui
View file @
36b2e2f2
...
...
@@ -10,12 +10,22 @@ source script/solve_gdbserver
source
script/discover_package_manager
source
script/solve_nodejs
source
script/solve_python_devel
source
script/solve_llvm
node_js_inst
=
0
if
[
x
"
$platform
"
==
x
"osx"
]
;
then
echo
-e
"node
\0
33[91;5;1m The parallel debugger at the moment is not supported on OSX
\0
33[0m"
return
solve_llvm
$platform
echo
"OSX installing lldb-mi"
rm
lldb-mi-master.tar.gz
wget http://ppmcore.mpi-cbg.de/upload/lldb-mi-master.tar.gz
tar
-xf
lldb-mi-master.tar.gz
cd
lldb-mi-master
mkdir
build
cd
build
cmake ../.
-DCMAKE_PREFIX_PATH
=
$1
/LLDB-MI
make
fi
solve_python_devel
$platform
...
...
script/solve_llvm
0 → 100755
View file @
36b2e2f2
#! /bin/bash
function
solve_llvm
()
{
source
script/show_solutions
source
script/discover_package_manager
discover_package_manager
$1
pcman
=
$discover_package_manager_ret
if
[
x
"
$pcman
"
=
x
""
]
;
then
exit
1
fi
if
[
x
"
$pcman
"
==
x
"brew"
]
;
then
base_llvm_pkg
=
"llvm"
fi
if
[
x
"
$1
"
=
x
"osx"
]
;
then
pc_install_command
"
$pcman
"
commands[0]
=
"su -c
\"
$pc_install_command_ret
$base_python_pkg
\"
"
commands[1]
=
"sudo
$pc_install_command_ret
$base_python_pkg
"
possible_solutions
"
${
commands
[@]
}
"
fi
}
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