mirror of https://github.com/google/oss-fuzz.git
[spidermonkey] Fix issue 19014 (#4369)
This commit is contained in:
parent
13f7ba0f63
commit
df40d511b1
|
@ -15,8 +15,10 @@
|
|||
################################################################################
|
||||
|
||||
FROM gcr.io/oss-fuzz-base/base-builder
|
||||
RUN apt-get update && apt-get install -y \
|
||||
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
|
||||
autoconf2.13 \
|
||||
libc++1 \
|
||||
libc++abi1 \
|
||||
yasm \
|
||||
python
|
||||
|
||||
|
|
|
@ -36,3 +36,8 @@ cd build_DBG.OBJ
|
|||
make "-j$(nproc)"
|
||||
|
||||
cp dist/bin/js $OUT
|
||||
|
||||
# Copy libraries.
|
||||
mkdir -p $OUT/lib
|
||||
cp -L /usr/lib/x86_64-linux-gnu/libc++.so.1 $OUT/lib
|
||||
cp -L /usr/lib/x86_64-linux-gnu/libc++abi.so.1 $OUT/lib
|
||||
|
|
|
@ -3,6 +3,7 @@ language: c++
|
|||
primary_contact: "choller@mozilla.com"
|
||||
auto_ccs:
|
||||
- sledru@mozilla.com
|
||||
- twsmith@mozilla.com
|
||||
fuzzing_engines:
|
||||
- none
|
||||
sanitizers:
|
||||
|
|
Loading…
Reference in New Issue