[M5] verify-curated-db.sh + boost recipe (header-only)

This commit is contained in:
2026-05-10 01:42:20 +00:00
parent b0818846b2
commit f3d18b7939
29 changed files with 412 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
// libjpeg's jpeglib.h relies on stdio types being already declared.
#include <stdio.h>
#include <stddef.h>
#include <jpeglib.h>
import std;
int main() {
std::println("libjpeg ok: lib version {}", JPEG_LIB_VERSION);
return 0;
}