aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dockerfiles/Debian_testing.docker
diff options
context:
space:
mode:
authorVasil Velichkov <vvvelichkov@gmail.com>2018-04-09 13:00:55 +0300
committerPiotr Krysik <ptrkrysik@gmail.com>2018-04-16 21:08:50 +0200
commit084b14ea17f902c607aa295e18deee3ed32deb07 (patch)
tree4d147b5f7a70f51c44e491dd2d285e4e0abf15f8 /tests/dockerfiles/Debian_testing.docker
parente24860f9c018b761d3380d9ceaea0dff46ead6f4 (diff)
Workaround for the grcc failure
See https://github.com/ptrkrysik/gr-gsm/pull/378#issuecomment-379587145 Traceback (most recent call last): File "/usr/bin/grcc", line 29, in <module> from gnuradio import gr File "/usr/lib/python2.7/dist-packages/gnuradio/gr/__init__.py", line 41, in <module> from runtime_swig import * File "/usr/lib/python2.7/dist-packages/gnuradio/gr/runtime_swig.py", line 17, in <module> _runtime_swig = swig_import_helper() File "/usr/lib/python2.7/dist-packages/gnuradio/gr/runtime_swig.py", line 16, in swig_import_helper return importlib.import_module('_runtime_swig') File "/usr/lib/python2.7/importlib/__init__.py", line 37, in import_module __import__(name) ImportError: No module named _runtime_swig
Diffstat (limited to 'tests/dockerfiles/Debian_testing.docker')
-rw-r--r--tests/dockerfiles/Debian_testing.docker3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/dockerfiles/Debian_testing.docker b/tests/dockerfiles/Debian_testing.docker
index a1010ed..643472e 100644
--- a/tests/dockerfiles/Debian_testing.docker
+++ b/tests/dockerfiles/Debian_testing.docker
@@ -26,6 +26,9 @@ RUN cmake .. && \
# The parallel build sometimes fails when the .grc_gnuradio
# and .gnuradio directories do not exist
mkdir $HOME/.grc_gnuradio/ $HOME/.gnuradio/ && \
+ # Workaround for the grcc failure
+ # https://github.com/ptrkrysik/gr-gsm/pull/378#issuecomment-379587145
+ ln -sf /usr/lib/x86_64-linux-gnu/libvolk.so.1.3.1 /usr/lib/x86_64-linux-gnu/libvolk.so.1.3 && \
make -j $(nproc) && \
make install && \
ldconfig && \