Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-04-18 | defaults: Use self-compiled protoc/grpc toolchain | Oliver Reiche | |
2023-03-24 | libgit2: Remove use of deprecated functions... | Paul Cristian Sarbu | |
...and enforce this through the build description. | |||
2023-03-15 | rules: CC/auto: add "config_file" rule to generate a c/c++ header... | Alberto Sartori | |
...starting from a template (aka configuration file), and using the variables defined via a ["CC/auto", "config"] target. For example, to use a CMake configuration file, the targets could be defined as follows ... , "foo-header-blueprint": { "type": ["@", "rules", "CC/auto", "config_file"] , "input": ["config.hpp.in"] , "output": ["config.hpp"] , "stage": ["foo"] , "magic_string": ["cmakedefine"] , "@only": ["true"] } , "foo-header": { "type": "configure" , "target": "foo-header-blueprint" , "config": { "type": "let*" , "bindings": [ [ "defines" , [ ["var", "\"string value\""] , ["FOO_MAJOR_VERSION", "3"] , ["use_this_feature", true] ] ] ] , "body": {"type": "env", "vars": ["defines"]} } } ... The file config.hpp.in may look as follows #ifndef config_cmake #define config_cmake #cmakedefine var #cmakedefine use_this_feature #cmakedefine01 use_this_feature #cmakedefine unused #define FOO_VERSION @FOO_MAJOR_VERSION@ #define DONT_TOUCH_THIS ${FOO_MAJOR_VERSION} #endif and the generated configuration file foo/config.hpp is #ifndef config_cmake #define config_cmake #define var "string value" #define use_this_feature #define use_this_feature 1 /* #undef unused */ #define FOO_VERSION 3 #define DONT_TOUCH_THIS ${FOO_MAJOR_VERSION} #endif | |||
2023-02-27 | libcurl: Update to latest v7.88.1 | Paul Cristian Sarbu | |
Main updates to build description: - remove unused defines of type "HAVE_<lib>_H" - add new variables that allow users to set explicitly the presence of some lib symbols - replace most defines of type "HAVE_<lib>" with "USE_<lib>" (to match the flag names) - added GLOBs (where it made sense) for increased maintainability | |||
2023-02-24 | libarchive: Update to latest v3.6.2 | Paul Cristian Sarbu | |
Changes in build description: - fix capitalization of ENABLE_LIBGCC flag. - add new HIDE_SYMBOLS flag to allow hiding of export symbols; used similar logic as for libcurl to circumvent the original CHECK_C_SOURCE_COMPILES macro use. | |||
2023-02-24 | libgit2: Update to v1.5.0 | Paul Cristian Sarbu | |
Changes to build description: - new USE_SHA256 flag - removed "Generic" option for USE_SHA1 - updated to the new source code structure (split "src/git2" into "src/libgit2" and "src/util") | |||
2023-01-31 | Remove -Werror from externals' cflags | Oliver Reiche | |
... and suppress new warnings thrown by clang-15. Co-authored-by: Michael Thies <mail@mhthies.de> | |||
2022-12-21 | External: Add libarchive dependency | Paul Cristian Sarbu | |
2022-12-21 | External: Add bzip2 dependency | Oliver Reiche | |
2022-12-21 | External: Add libcurl dependency | Paul Cristian Sarbu | |
2022-10-26 | grpc: Do not warn about unkonwn warning options | Oliver Reiche | |
2022-10-25 | grpc: Silence warnings depending on compiler | Oliver Reiche | |
2022-10-24 | grpc: silence warnings | Alberto Sartori | |
2022-10-24 | git2: silence warnings | Alberto Sartori | |
2022-10-21 | grpc: silence warnings | Alberto Sartori | |
2022-10-21 | absl: silence warnings | Alberto Sartori | |
2022-09-16 | Toolchain: Disable ABI warning for 32bit ARM GCC | Oliver Reiche | |
2022-09-16 | externals: Selectively disable remaining warnings | Oliver Reiche | |
2022-09-16 | protobuf: Precisely replicate original flags | Oliver Reiche | |
2022-09-16 | grpc: Precisely replicate original flags | Oliver Reiche | |
2022-09-16 | abseil: Precisely replicate original flags | Oliver Reiche | |
2022-09-16 | libgit2: Precisely replicate original flags | Oliver Reiche | |
2022-09-14 | Defaults: Fix setting TARGET_ARCH from ARCH if not set | Oliver Reiche | |
2022-09-14 | Defaults: Fix definition of ar binary | Oliver Reiche | |
2022-09-13 | Defaults: Use hierarchical defaults for flags and toolchain | Oliver Reiche | |
2022-07-04 | Externals: Give meaningful error if OS/ARCH is not set | Oliver Reiche | |
... which is required for boringssl, libg2 and grpc. | |||
2022-03-16 | Format: Apply compact JSON formatting | Oliver Reiche | |
2022-03-03 | Externals: Set `-O2` and C standard `gnu17` | Oliver Reiche | |
2022-03-03 | External libgit2: Disable warnings | Oliver Reiche | |
2022-03-03 | External re2: Disable warnings | Oliver Reiche | |
2022-03-03 | External absl: Disable warnings | Oliver Reiche | |
2022-02-23 | Add shell/test rule | Klaus Aehlig | |
... allowing to run simple tests given by a shell script. | |||
2022-02-22 | Initial self-hosting commit | Klaus Aehlig | |
This is the initial version of our tool that is able to build itself. In can be bootstrapped by ./bin/bootstrap.py Co-authored-by: Oliver Reiche <oliver.reiche@huawei.com> Co-authored-by: Victor Moreno <victor.moreno1@huawei.com> |