aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDRC <information@virtualgl.org>2021-03-26 18:44:40 -0500
committerGitHub <noreply@github.com>2021-03-26 16:44:40 -0700
commit0c95cf2c940b880949f23e6e2460954fedbe5d61 (patch)
treedb12df76aa93f914b93351e13b193ccc450a312a
parent10dce4104ac3a9c28cf90becd9b97777c7cc630a (diff)
downloadoss-fuzz-0c95cf2c940b880949f23e6e2460954fedbe5d61.tar.gz
[libjpeg-turbo] Fix build with libjpeg-turbo 2.1.x (#5519)
libjpeg-turbo 2.1 now requires NASM 2.13 or later or YASM 1.2.0 or later. Since the Docker image is based on Ubuntu 16.04, NASM 2.13 isn't available, so the easiest workaround is to use YASM instead. Fixes #4931
-rw-r--r--projects/libjpeg-turbo/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/libjpeg-turbo/Dockerfile b/projects/libjpeg-turbo/Dockerfile
index 329be457d..40c8f49f6 100644
--- a/projects/libjpeg-turbo/Dockerfile
+++ b/projects/libjpeg-turbo/Dockerfile
@@ -15,7 +15,7 @@
################################################################################
FROM gcr.io/oss-fuzz-base/base-builder
-RUN apt-get update && apt-get install -y make autoconf automake libtool nasm curl cmake
+RUN apt-get update && apt-get install -y make autoconf automake libtool yasm curl cmake
RUN git clone --depth 1 https://github.com/libjpeg-turbo/libjpeg-turbo
RUN mkdir afl-testcases