aboutsummaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2018-09-27Cross compilation support (#709)Stephen Kyle1-2/+14
* 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.
2017-05-29Update (#555)Eugene Kliuchnikov1-3/+4
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
2017-04-23Move files & update paths (#541)Eugene Kliuchnikov1-5/+5
* Move files & update paths * Rename build to scripts. * Fix paths * Fix script.
2016-10-31Update docs and add more java tests (#463)Eugene Kliuchnikov1-1/+1
* doxygenize and update API documentation * fix spelling * add "fuzz" corpus for java decoder to improve coverage * use upper-case-snake names for dictionary constant definitions * use `LDFLAGS` in conventional `Makefile`
2016-09-22Update researchEugene Kliuchnikov1-4/+5
* don't use `assert` when side-effect is desired * use `gflags` to pick options from args Other changes: * teach stub `Makefile` to do partial rebuild * remove obsolete `tools/version.h`
2016-08-23Move "public" to "include/brotli"Eugene Kliuchnikov1-1/+1
2016-07-06Add a "lib" target to the Makefile to build a static library named libbrotli.achad-iris1-3/+9
2016-06-24Update build systemsEvgenii Kliuchnikov1-8/+31
2016-06-20Update encoderEugene Kliuchnikov1-1/+1
* reorganize premake artifacts * remove deprecated methods/struct
2016-06-17Fix VS build problems:Eugene Kliuchnikov1-2/+2
* rename build -> buildfiles to avoid clashing with BUILD * set binary mode for stdin/out in bro * convert bro to C
2016-06-16Update build system. Now libraries are produced as build artifacts.Eugene Kliuchnikov1-0/+12
There are currently 3 ways to build: * Easy: `./configure; make` * Simple: use Bazel * Portable: use premake5 to generate XCode / MSVS projects