[decompress] Support BMI2

This commit is contained in:
Nick Terrell
2018-02-13 17:00:15 -08:00
parent 9716250197
commit 4319132312
8 changed files with 1135 additions and 693 deletions
+13
View File
@@ -25,6 +25,9 @@ cxx_library(
name='decompress',
header_namespace='',
visibility=['PUBLIC'],
headers=subdir_glob([
('decompress', '*_impl.h'),
]),
srcs=glob(['decompress/zstd*.c']),
deps=[
':common',
@@ -80,6 +83,15 @@ cxx_library(
]),
)
cxx_library(
name='cpu',
header_namespace='',
visibility=['PUBLIC'],
exported_headers=subdir_glob([
('common', 'cpu.h'),
]),
)
cxx_library(
name='bitstream',
header_namespace='',
@@ -196,6 +208,7 @@ cxx_library(
deps=[
':bitstream',
':compiler',
':cpu',
':entropy',
':errors',
':mem',