-
-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Appimage or installer for arm? #192
Comments
I tried the following on an ARM machine (M1 Mac), both in a docker container as well as in a full ubuntu VM using UTM with virtualization. First, I installed basic dependencies:
then installed specific dependencies:
then I tried to follow #156:
which worked fine but now at the last step
I get the following error:
I don't know how to fix that. The libraries are mentioned as dependencies in the CMakeLists.txt so I don't know what is going on here. Not sure though if that is an ARM specific issue. |
Have you installed those libraries? It's probably these or some version of them
|
Sharing FROM ubuntu:jammy
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y -q \
git \
build-essential \
cmake \
python3 \
qtbase5-dev \
libqt5svg5-dev \
libzmq3-dev \
libdw-dev \
libtinfo-dev \
libncurses5-dev \
libncursesw5-dev
RUN git clone https://github.com/BehaviorTree/Groot.git &&\
cd Groot &&\
git submodule update --init --recursive &&\
cd depend/BehaviorTree.CPP &&\
mkdir build ; cd build &&\
cmake .. &&\
make &&\
make install &&\
cd /Groot &&\
mkdir build; cd build &&\
cmake .. &&\
make &&\
# add alias for Groot GUI (simply type "Groot" in terminal)
echo 'alias Groot="cd /Groot/build && ./Groot"' >> ~/.bashrc
# fixes: "error while loading shared libraries: libbehaviortree_cpp_v3.so: cannot open shared object"
RUN ldconfig
WORKDIR /Groot/build
CMD ./Groot |
Hi, is there any support for installing Groot on arm based systems. The appimages i found are for x86. Or how can I proceed from building the soure code and getting the UI set up?
The text was updated successfully, but these errors were encountered: