| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| add_subdirectory(Reader) | ||
| # The writer is header-only. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| ;===- ./lib/Bitstream/LLVMBuild.txt ----------------------------*- Conf -*--===; | ||
| ; | ||
| ; Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
| ; See https://llvm.org/LICENSE.txt for license information. | ||
| ; SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
| ; | ||
| ;===------------------------------------------------------------------------===; | ||
| ; | ||
| ; This is an LLVMBuild description file for the components in this subdirectory. | ||
| ; | ||
| ; For more information on the LLVMBuild system, please see: | ||
| ; | ||
| ; http://llvm.org/docs/LLVMBuild.html | ||
| ; | ||
| ;===------------------------------------------------------------------------===; | ||
|
|
||
| [common] | ||
| subdirectories = Reader | ||
|
|
||
| [component_0] | ||
| type = Group | ||
| name = Bitstream | ||
| parent = Libraries |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| add_llvm_library(LLVMBitstreamReader | ||
| BitstreamReader.cpp | ||
|
|
||
| ADDITIONAL_HEADER_DIRS | ||
| ${LLVM_MAIN_INCLUDE_DIR}/llvm/Bitcode | ||
| ${LLVM_MAIN_INCLUDE_DIR}/llvm/Bitstream | ||
| ) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| ;===- ./lib/Bitstream/Reader/LLVMBuild.txt ---------------------*- Conf -*--===; | ||
| ; | ||
| ; Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
| ; See https://llvm.org/LICENSE.txt for license information. | ||
| ; SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
| ; | ||
| ;===------------------------------------------------------------------------===; | ||
| ; | ||
| ; This is an LLVMBuild description file for the components in this subdirectory. | ||
| ; | ||
| ; For more information on the LLVMBuild system, please see: | ||
| ; | ||
| ; http://llvm.org/docs/LLVMBuild.html | ||
| ; | ||
| ;===------------------------------------------------------------------------===; | ||
|
|
||
| [component_0] | ||
| type = Library | ||
| name = BitstreamReader | ||
| parent = Bitstream | ||
| required_libraries = Support |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,6 +19,7 @@ subdirectories = | |
| Analysis | ||
| AsmParser | ||
| Bitcode | ||
| Bitstream | ||
| CodeGen | ||
| DebugInfo | ||
| Demangle | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| set(LLVM_LINK_COMPONENTS | ||
| BitReader | ||
| BitstreamReader | ||
| Support | ||
| ) | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,4 +18,4 @@ | |
| type = Tool | ||
| name = llvm-bcanalyzer | ||
| parent = Tools | ||
| required_libraries = BitReader BitstreamReader Support | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,4 @@ set(LLVM_LINK_COMPONENTS | |
|
|
||
| add_llvm_unittest(BitcodeTests | ||
| BitReaderTest.cpp | ||
| ) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| set(LLVM_LINK_COMPONENTS | ||
| BitstreamReader | ||
| ) | ||
|
|
||
| add_llvm_unittest(BitstreamTests | ||
| BitstreamReaderTest.cpp | ||
| BitstreamWriterTest.cpp | ||
| ) |