mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Remove obsoleted scripts Signed-off-by: Jacek Danecki <jacek.danecki@intel.com> https://github.com/intel/compute-runtime/pull/234 Change-Id: I244214a3fa778e3e048566c5869f8348563a752a
14 lines
763 B
Plaintext
14 lines
763 B
Plaintext
FROM docker.io/ubuntu:18.04
|
|
MAINTAINER Jacek Danecki <jacek.danecki@intel.com>
|
|
|
|
COPY neo /root/neo
|
|
RUN apt-get -y update ; apt-get install -y --allow-unauthenticated gpg; \
|
|
echo "deb http://ppa.launchpad.net/ocl-dev/intel-opencl/ubuntu bionic main" >> /etc/apt/sources.list; \
|
|
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3086B78CC05B8B1; \
|
|
apt-get -y update ; apt-get install -y --allow-unauthenticated cmake g++-6 git pkg-config ninja-build libigc-dev intel-gmmlib-dev
|
|
RUN mkdir /root/build; cd /root/build ; cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
|
|
-DSUPPORT_GEN8=1 -DSUPPORT_GEN9=0 -DSUPPORT_GEN11=0 -DSUPPORT_GEN12LP=0 \
|
|
-DCMAKE_C_COMPILER=gcc-6 -DCMAKE_CXX_COMPILER=g++-6 ../neo; \
|
|
ninja -j `nproc`
|
|
CMD ["/bin/bash"]
|