Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mcpplibs/tinyhttps
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: mcpplibs/tinyhttps
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: feat/add-mcpp-support
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on May 9, 2026

  1. feat: add mcpp build support (mcpp.toml)

    Adds the mcpp-build manifest alongside the existing xmake.lua so
    tinyhttps can be consumed/built by both ecosystems. The mcpp side
    relies on:
    
      * mbedtls 3.6.1 — pulled from mcpp-index (the descriptor lands in a
        parallel mcpp-community/mcpp-index PR). mcpp 0.0.2's C-language
        compile rule (`c_object`) builds mbedtls from source and packs
        it into libtinyhttps.a alongside the modular C++23 .m.o files.
      * gtest 1.15.2 — dev-only, picked up by `mcpp test` to run the
        existing tests/test_*.cpp.
    
    Verified:
      $ mcpp build
        ...
        Compiling mcpplibs.tinyhttps v0.2.0 (.)
           Cached mbedtls v3.6.1
        Finished release [optimized] in 1.52s
      $ ar t target/.../bin/libtinyhttps.a | grep -c '\\.o$'   # all 6 partitions + 108 mbedtls .c
    Sunrisepeak committed May 9, 2026
    Configuration menu
    Copy the full SHA
    83b4af6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    edba7dc View commit details
    Browse the repository at this point in the history
Loading