blob: 170f07577c6ebd6424e6db8af01925c1a78d1ad6 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | FROM fridadotre/manylinux-x86_64
COPY realpath /bin/realpath
RUN chmod +x /bin/realpath
RUN yum -y install xz
RUN yum -y install vim-common
WORKDIR /AFLplusplus
ENV CFLAGS="\
    -DADDR_NO_RANDOMIZE=0x0040000 \
    -Wno-implicit-function-declaration \
    "
ENV CXX=$CC
 |