File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 99gdb \
1010clang \
1111python36 \
12- glibc-devel.i686
12+ glibc-devel.i686 \
13+ xmlto \
14+ uuid \
15+ libuuid-devel \
16+ json-c-devel
1317
1418COPY ./install-cachelib-deps.sh ./install-cachelib-deps.sh
1519RUN ./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