File tree 2 files changed +31
-1
lines changed
2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 9
9
gdb \
10
10
clang \
11
11
python36 \
12
- glibc-devel.i686
12
+ glibc-devel.i686 \
13
+ xmlto \
14
+ uuid \
15
+ libuuid-devel \
16
+ json-c-devel
13
17
14
18
COPY ./install-cachelib-deps.sh ./install-cachelib-deps.sh
15
19
RUN ./install-cachelib-deps.sh
20
+
21
+ COPY ./install-dsa-deps.sh ./install-dsa-deps.sh
22
+ RUN ./install-dsa-deps.sh
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ # Copyright 2023, Intel Corporation
3
+
4
+ # Install idxd-config
5
+ git clone https://github.com/intel/idxd-config.git
6
+ cd idxd-config
7
+ ./autogen.sh
8
+ ./configure CFLAGS=' -g -O2' --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib64
9
+ make
10
+ make check
11
+ sudo make install
12
+ cd ../
13
+ rm -rf idxd-config
14
+
15
+ # Install DML Library
16
+ git clone --recursive https://github.com/intel/DML.git
17
+ cd DML
18
+ mkdir build
19
+ cd build
20
+ cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
21
+ cmake --build . --target install
22
+ cd ../../
23
+ rm -rf DML
You can’t perform that action at this time.
0 commit comments