Skip to content

Commit ecabc79

Browse files
vineelkoos-d
authored andcommitted
[CHERRY-PICK] Fix GCC5 build error
Signed-off-by: Vineel Kovvuri[MSFT] <[email protected]> (cherry picked from commit 8b8d541)
1 parent 5d87850 commit ecabc79

File tree

2 files changed

+13
-0
lines changed
  • BaseTools/Source/C/BrotliCompress
  • MdeModulePkg/Library/BrotliCustomDecompressLib/sys

2 files changed

+13
-0
lines changed

BaseTools/Source/C/BrotliCompress/GNUmakefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ OBJECTS = \
2222
brotli/c/dec/bit_reader.o \
2323
brotli/c/dec/decode.o \
2424
brotli/c/dec/huffman.o \
25+
brotli/c/dec/prefix.o \
2526
brotli/c/dec/state.o \
27+
brotli/c/dec/static_init.o \
2628
brotli/c/enc/backward_references.o \
2729
brotli/c/enc/backward_references_hq.o \
2830
brotli/c/enc/bit_cost.o \
@@ -40,6 +42,8 @@ OBJECTS = \
4042
brotli/c/enc/memory.o \
4143
brotli/c/enc/metablock.o \
4244
brotli/c/enc/static_dict.o \
45+
brotli/c/enc/static_dict_lut.o \
46+
brotli/c/enc/static_init.o \
4347
brotli/c/enc/utf8_util.o
4448

4549
include $(MAKEROOT)/Makefiles/app.makefile
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/** @file
2+
Include file to support building the third-party brotli.
3+
4+
Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
5+
SPDX-License-Identifier: BSD-2-Clause-Patent
6+
7+
**/
8+
9+
#include <brotli/types.h>

0 commit comments

Comments
 (0)