I thought I got all of the host dependencies installed, but evidently I am doing something wrong. I am building on Debian 9 (x86_64) system. I ran the init script from the build directory with the -DPLATFORM=x86_64 and -DSIMULATION=0 options. I then ran ninja with no options. Please find attached the output of running these 2 steps. I'd appreciate a gentle nudge in the right direction. Thanks! Dave
Any reason you aren't using the Docker image to build everything?
https://github.com/SEL4PROJ/seL4-CAmkES-L4v-dockerfiles
On Tue, Dec 4, 2018, 8:26 PM Dave Richards I thought I got all of the host dependencies installed, but evidently I am
doing something wrong. I am building on Debian 9 (x86_64) system. I ran
the init script from the build directory with the –DPLATFORM=x86_64 and
–DSIMULATION=0 options. I then ran ninja with no options. Please find
attached the output of running these 2 steps. I’d appreciate a gentle
nudge in the right direction. Thanks! Dave _______________________________________________
Devel mailing list
Devel@sel4.systems
https://sel4.systems/lists/listinfo/devel
Hi Dave,
This could be an issue where your python resolves to python3 instead of python2.7.
The kernel is supposed to build with either, but it seems that the regression for building with python3 had itself broken and was only using python. For an immediate fix that doesn't involve using docker, you can change the line in kernel/CMakeLists.txt:
set(PYTHON "python" CACHE INTERNAL "")
to
set(PYTHON "python3" CACHE INTERNAL "")
Kent.
________________________________
From: Devel
participants (3)
-
Dave Richards
-
Kent.Mcleod@data61.csiro.au
-
Mike Clark