{"id":13418025,"url":"https://github.com/bloomberg/bde","last_synced_at":"2025-05-13T23:09:52.192Z","repository":{"id":5427164,"uuid":"6619178","full_name":"bloomberg/bde","owner":"bloomberg","description":"Basic Development Environment - a set of foundational C++ libraries used at Bloomberg.","archived":false,"fork":false,"pushed_at":"2025-05-08T19:15:03.000Z","size":243014,"stargazers_count":1709,"open_issues_count":20,"forks_count":319,"subscribers_count":149,"default_branch":"main","last_synced_at":"2025-05-08T20:26:24.036Z","etag":null,"topics":["allocators","cpp","cpp-library","cpp11","polymorphic-allocators"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bloomberg.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2012-11-09T20:00:30.000Z","updated_at":"2025-05-08T19:15:07.000Z","dependencies_parsed_at":"2023-02-15T00:16:55.187Z","dependency_job_id":"b9583ee5-d082-4564-8ad8-7b4d303d0b51","html_url":"https://github.com/bloomberg/bde","commit_stats":{"total_commits":10356,"total_committers":174,"mean_commits":59.51724137931034,"dds":0.8983198146002318,"last_synced_commit":"9bad1d027862a33d51b300ba7faadd45f4075d84"},"previous_names":[],"tags_count":581,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bloomberg%2Fbde","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bloomberg%2Fbde/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bloomberg%2Fbde/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bloomberg%2Fbde/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bloomberg","download_url":"https://codeload.github.com/bloomberg/bde/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253162125,"owners_count":21863850,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["allocators","cpp","cpp-library","cpp11","polymorphic-allocators"],"created_at":"2024-07-30T22:00:57.368Z","updated_at":"2025-05-13T23:09:47.171Z","avatar_url":"https://github.com/bloomberg.png","language":"C++","readme":"BDE Libraries\n=============\n\nThis repository contains the BDE libraries, currently BSL (Basic Standard\nLibrary), BDL (Basic Development Library), BAL (Basic Application Library), and\nBBL (Basic Business Library).\n\nDocumentation and Build Links\n=============================\n\nFor more information about BDE libraries follow the links below.\n\nOpen Source\n-----------\n\n* [Online Library Documentation](https://bloomberg.github.io/bde)\n* [BDE Build Tools](https://bloomberg.github.io/bde-tools/)\n* [BDE Build Instructions](https://bloomberg.github.io/bde/library_information/build.html)\n\n\nBloomberg LP (internal)\n-----------------------\n\n* [Online Library Documentation](https://bde.bloomberg.com/bde)\n* [BDE Build Tools](https://bde.bloomberg.com/bde-tools/)\n* [BDE Build Instructions](https://bde.bloomberg.com/bde/library_information/build.html)\n\n\nBuild Instructions\n==================\nBDE uses a build system based on [cmake](https://cmake.org).  The build system is located in the\nBDE tools repository (see [Documentation Links](#documentation-links)).\n\n* [Build instructions for open source users](https://bloomberg.github.io/bde/library_information/build.html)\n* [Build instructions for Bloomberg LP users](https://bde.bloomberg.com/bde/library_information/build.html)\n\nPrerequisites\n-------------\nThe BDE CMake build system requires the following software to be preinstalled and configured on the system:\n\n* [CMake](https://cmake.org) version 3.12 or later\n* [Ninja](https://ninja-build.org/) (recommended) or GNU Make\n* [Python](https://www.python.org/)\n\nNote that `python` is used by the build helpers `bde_build_env.py` and `cmake_build.py`, but is not strictly needed\nto build BDE.  See the more complete build instructions linked below for more detail.\n\nBuild Instructions (Open Source)\n--------------------------------\nPlease see the more complete [build instructions for open source users](https://bloomberg.github.io/bde/library_information/build.html).\n\nThe following commands can be used to configure and build the BDE repository:\n1. Clone the `bde-tools` and `bde` repositories and add `bde-tools` to your `PATH`:\n   ```shell\n   $ git clone https://github.com/bloomberg/bde-tools.git\n   $ export PATH=$PWD/bde-tools/bin:$PATH      # add bde-tools to the 'PATH'\n   $ git clone https://github.com/bloomberg/bde.git\n   $ cd bde\n   ```\n\n2. From the root of this source repository, run:\n\n   ```shell\n   $ export BDE_CMAKE_BUILD_DIR=$PWD/_build   # configure the build directory\n   $ bbs_build configure -u opt_dbg_64_cpp17\n   ```\n\n3. To build the libraries, but not the test drivers, run:\n\n   ```shell\n   $ bbs_build build\n   ```\n\n   To also build the test drivers, run:\n\n   ```shell\n   $ bbs_build build --test build\n   ```\n\n   To build and run the test drivers, run:\n\n   ```shell\n   $ bbs_build build --test run\n   ```\n\nBuild Instructions (Bloomberg LP)\n---------------------------------\nPlease see the more complete [build instructions for Bloomberg LP users](https://bde.bloomberg.com/bde/library_information/build.html).\n\nThe following commands can be used to configure and build the BDE repository:\n1. Clone the `bde-tools` and `bde` repositories and add `bde-tools` to your `PATH`:\n   ```shell\n   $ git clone bbgithub:bde/bde-tools\n   $ export PATH=$PWD/bde-tools/bin:$PATH      # add bde-tools to the 'PATH'\n   $ git clone bbgithub:bde/bde\n   $ cd bde\n   ```\n\n2. From the root of this source repository, run:\n\n   ```shell\n   $ export BDE_CMAKE_BUILD_DIR=$PWD/_build   # configure the build directory\n   $ bbs_build configure -u opt_dbg_64_cpp17\n   ```\n\n3. To build the libraries, but not the test drivers, run:\n\n   ```shell\n   $ bbs_build build\n   ```\n\n   To also build the test drivers, run:\n\n   ```shell\n   $ bbs_build build --test build\n   ```\n\n   To build and run the test drivers, run:\n\n   ```shell\n   $ bbs_build build --test run\n   ```\n\nLicense\n=======\nThe BDE libraries are distributed under the Apache License (version 2.0); see\nthe LICENSE file at the top of the source tree for more information.\n","funding_links":[],"categories":["TODO scan for Android support in followings","Frameworks","C++","框架"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbloomberg%2Fbde","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbloomberg%2Fbde","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbloomberg%2Fbde/lists"}