{"id":29631910,"url":"https://github.com/israfiel-a/azalea","last_synced_at":"2025-07-21T12:43:03.105Z","repository":{"id":304365303,"uuid":"1018569363","full_name":"israfiel-a/azalea","owner":"israfiel-a","description":"A small, concise C-like language built for use in the Cobalt operating system.","archived":false,"fork":false,"pushed_at":"2025-07-20T23:58:23.000Z","size":51,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-21T01:19:33.143Z","etag":null,"topics":["c-like","programming-language"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/israfiel-a.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2025-07-12T14:45:12.000Z","updated_at":"2025-07-20T23:58:27.000Z","dependencies_parsed_at":"2025-07-12T17:53:00.481Z","dependency_job_id":null,"html_url":"https://github.com/israfiel-a/azalea","commit_stats":null,"previous_names":["israfiel-a/azalea"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/israfiel-a/azalea","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/israfiel-a%2Fazalea","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/israfiel-a%2Fazalea/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/israfiel-a%2Fazalea/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/israfiel-a%2Fazalea/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/israfiel-a","download_url":"https://codeload.github.com/israfiel-a/azalea/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/israfiel-a%2Fazalea/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266303929,"owners_count":23908379,"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","status":"online","status_checked_at":"2025-07-21T11:47:31.412Z","response_time":64,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["c-like","programming-language"],"created_at":"2025-07-21T12:43:00.095Z","updated_at":"2025-07-21T12:43:03.100Z","avatar_url":"https://github.com/israfiel-a.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"----------\n\n### Azalealang\nThis is a small, [C-like](https://en.wikipedia.org/wiki/List_of_C-family_programming_languages), [low-level language](https://en.wikipedia.org/wiki/Low-level_programming_language) built specifically for the development of the [Cobalt operating system](https://github.com/israfiel-a/cobalt). This language is not and probably never will be fit for general usage, it's tailored exactly to my needs and my programming style. The compiler is also mostly implemented in [inline assembly](https://en.wikipedia.org/wiki/Inline_assembler), entirely without the [C standard library](https://en.wikipedia.org/wiki/C_standard_library), because why not.\n\n\u003e [!WARNING]\n\u003e This language, and its compiler, are under **very** early development. Changes, especially breaking changes, should be expected, and should be expected to be frequent.\n\n----------\n\n#### Compatibility\nAzalea will only ever have targets for the [x86_64 architecture](https://en.wikipedia.org/wiki/X86-64), that's its usecase. It compiles directly to x86_64 assemblies of different varieties (NASM, FASM, etc.). A list of the targets that are (planned) is below.\n\n- [Linux](https://en.wikipedia.org/wiki/Linux):\n  - [NASM](https://en.wikipedia.org/wiki/Netwide_Assembler): **In progres.**\n  - [FASM](https://en.wikipedia.org/wiki/FASM): **On the roadmap.**\n- [Cobalt](https://github.com/israfiel-a/cobalt): **In progress.**\n- [BSD](https://en.wikipedia.org/wiki/Berkeley_Software_Distribution): **On the roadmap.**\n\n----------\n\n#### Compilation\nYou can compile Azalea via the [CMake](https://en.wikipedia.org/wiki/CMake) build system. You can build the Azalea compiler interface as either a [shared](https://en.wikipedia.org/wiki/Shared_library) or [static](https://en.wikipedia.org/wiki/Static_library) library to link to your own compiler implementations (if, for some reaosn, you wish to create a compiler for this monstrous language).\n\n```bash\nBUILD_TYPE=Release\ncmake --B build -DCMAKE_BUILD_TYPE=$BUILD_TYPE        # Build type must be set, or assumed debug.\ncmake --build build --config $BUILD_TYPE --parallel 9 # Parallelization is not required, but faster.\n\n# Output:\n# build/libAzalea.a \u003c- Compiler interface\n# build/AzaleaC     \u003c- Compiler client\n```\n\n----------\n\n#### Versioning\nAzalea is versioned in a `major.minor.patch.tweak` system. Each \"tweak\" is a commit; something was changed. This rolls over when a \"patch\" is hit, being a fix to a certain bug or feature. These roll over ever \"minor\" version, which occur every time a new large feature is implemented. This only rolls over every \"major\" version, which are milestones decided by maintainers.\n\n\u003e [!WARNING]\n\u003e This versioning system will not be followed properly until the compiler is in a good state. Until then, all is listed as \"since v1.0.0.0\".\n\n----------\n\n#### Roadmap\n- [x] Loader\n- [ ] Tokenizer\n- [ ] Analyzer\n- [ ] Compiler\n\n----------\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisrafiel-a%2Fazalea","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fisrafiel-a%2Fazalea","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisrafiel-a%2Fazalea/lists"}