|
eb3a31e2
|
2024-09-18T15:25:06
|
|
add max_length to Python streaming decompression
|
|
3396c67f
|
2024-01-15T12:49:21
|
|
add brcat alias + flag to decompress concatenated streams
PiperOrigin-RevId: 598652401
|
|
033940f9
|
2024-01-11T02:03:59
|
|
add comment (fingerprint) CLI feature
PiperOrigin-RevId: 597489910
|
|
cf95fbb9
|
2023-09-11T07:08:16
|
|
reword cmake test generator warning
PiperOrigin-RevId: 564371898
|
|
bc32ae12
|
2023-07-04T13:01:14
|
|
add tests with UTF8/UTF16 non-ASCII text
PiperOrigin-RevId: 545424981
|
|
d0529182
|
2020-08-26T17:13:31
|
|
Fix build files (#829)
|
|
67f059ea
|
2018-09-27T10:00:33
|
|
Cross compilation support (#709)
* build: add cross-compilation support to make
Set CROSS_COMPILE when running make to use the selected cross
compilation toolchain, such as arm-linux-gnueabihf, or
aarch64-linux-gnu.
Testing requires the presence of qemu - 'qemu-$(ARCH)' will be executed,
where ARCH is the first part of the toolchain triplet.
* build: add cross-compilation support to cmake
If C_COMPILER/CXX_COMPILER/CC/CXX are found to have cross-compilation
triplets in front of the compiler, then qemu will be used to execute the
tests.
* CI: add arm-linux-gnueabihf-gcc builder to Travis
The version of qemu available in Ubuntu trusty (as provided by Travis)
appears to have a bug in qemu-aarch64, which leads to the compatibility
tests failing on some inputs, erroneously rejecting the input as
corrupt.
Once Travis supports xenial, we could add an aarch64-gnu-linux-gcc
builder as well.
* CI: propagate cmake errors out of .travis.sh
Seems like even if cmake fails, the error isn't picked up by Travis.
|
|
bf6a6cda
|
2017-09-22T13:13:22
|
|
Fix parallel test execution
|
|
26a34a43
|
2017-09-14T16:14:05
|
|
Employ make/gcc on Appveyor + push artifacts (#596)
|
|
03739d2b
|
2017-05-29T17:55:14
|
|
Update (#555)
Update:
* new CLI; bro -> brotli; + man page
* JNI wrappers preparation (for bazel build)
* add raw binary dictionary representation `dictionary.bin`
* add ability to side-load brotli RFC dictionary
* decoder persists last error now
* fix `BrotliDecoderDecompress` documentation
* go reader don't block until necessary
* more consistent bazel target names
* Java dictionary data compiled footprint reduced
* Java tests refactoring
|
|
6ece1d87
|
2017-04-23T14:07:08
|
|
Move files & update paths (#541)
* Move files & update paths
* Rename build to scripts.
* Fix paths
* Fix script.
|
|
50bc3a71
|
2016-12-09T08:58:13
|
|
Do not assume that bash is installed in /bin (#477)
This is required in order to run the tests on *BSD.
|
|
03657e80
|
2016-07-28T13:31:09
|
|
Add mingw support.
|
|
93ef13f8
|
2016-06-20T13:07:35
|
|
Add CMake build system.
|
|
52ff8171
|
2016-06-24T15:32:51
|
|
Update build systems
|
|
378485b0
|
2016-06-16T10:52:57
|
|
Update build system. Now libraries are produced as build artifacts.
There are currently 3 ways to build:
* Easy: `./configure; make`
* Simple: use Bazel
* Portable: use premake5 to generate XCode / MSVS projects
|
|
3ccbf05d
|
2016-06-13T11:01:04
|
|
Convert encoder to plain C.
|
|
98bc7fcc
|
2016-06-03T12:30:12
|
|
Fix test file path
|
|
b972c677
|
2016-06-13T11:01:04
|
|
Convert encoder to plain C.
|
|
9dd7e38b
|
2016-06-03T12:30:12
|
|
Fix test file path
|
|
4092b4d4
|
2015-09-01T13:45:19
|
|
Add more testdata.
|
|
8d83839a
|
2015-05-11T14:14:05
|
|
Expose the quality parameter to the bro.cc tool.
|
|
10a2f374
|
2015-05-07T20:43:01
|
|
Handle multiple compressed files per original in the test.
Add some more test cases that decompress to the empty
file or a one byte long file. These test cases have
examples for the updated stream header and meta-block
header formats.
|
|
5da7e37a
|
2015-03-13T18:00:28
|
|
Makefile fixes and cleanups
- Distinguish between CC/CFLAGS, CPP/CPPFLAGS and CXX/CXXFLAGS.
Do not store compiler flags in CPPFLAGS, which is for preprocessor,
and do not try to link files using a preprocessor.
- Use COMMON_FLAGS for flags that are for both C and C++.
- Drop -m64 flag which is wrong on 32-bit systems.
- Use $(MAKE) instead of make, so that parallel building works.
|
|
1d763978
|
2015-01-13T16:42:35
|
|
Add more test cases.
|
|
ac455c50
|
2014-11-17T15:31:00
|
|
Improvements to the command-line tool.
- Don't read the whole input to memory.
- Support reading from stdin and writing to stdout.
|
|
e1739826
|
2014-10-30T13:59:37
|
|
Add command-line tool and tests.
|