-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[scrape.yml] New OCaml Planet blog posts and videos (#2945)
Co-authored-by: cuihtlauac <[email protected]>
- Loading branch information
1 parent
744ce29
commit a53456d
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
.../planet/janestreet/how-we-accidentally-built-a-better-build-system-for-ocaml.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
title: How we accidentally built a better build system for OCaml | ||
description: "A \u201Cbuild system\u201D is one of the most important tools in a developer\u2019stoolbox. | ||
Roughly, it figures out how to create runnable programs froma bunch of different..." | ||
url: https://blog.janestreet.com/how-we-accidentally-built-a-better-build-system-for-ocaml-index/ | ||
date: 2025-01-24T00:00:00-00:00 | ||
preview_image: https://blog.janestreet.com/how-we-accidentally-built-a-better-build-system-for-ocaml-index/dune-jenga.png | ||
authors: | ||
- Jane Street Tech Blog | ||
source: | ||
--- | ||
|
||
<p>A “build system” is one of the most important tools in a developer’s | ||
toolbox. Roughly, it figures out how to create runnable programs from | ||
a bunch of different source files by calling out to the compiler, | ||
setting up and executing test suites, and so on. Because you interact | ||
with it daily, above all it has to be <a href="https://xkcd.com/303/">fast</a> – | ||
but it also has to be flexible.</p> | ||
|
||
|