GitXplorerGitXplorer
f

ruby-c-extensions-explained

public
93 stars
2 forks
5 issues

Commits

List of commits on branch main.
Verified
7ee098d8a7477b10a05d7899740a7b230b992ae4

precompiled: drop x64-mingw32

fflavorjones committed a month ago
Verified
02f7d0de4bec27b7639096e9fb103dc06c7e3837

version bump to v1.6.0

fflavorjones committed a month ago
Verified
d0c25e2f1467b9f90baa06c056ea06ff02f5b7ae

Merge pull request #35 from flavorjones/flavorjones-rcd-1.7.0.rc1

fflavorjones committed a month ago
Verified
aa9412be59ce14be76aeb7a78857269b1e3186e1

ci: rename some jobs to be more readable

fflavorjones committed a month ago
Verified
834d00922b2cd91fb75dc160f690f52d2e10ac0e

ext: bump rake-compiler-dock to 1.7.0.rc1 and add ruby 3.4

fflavorjones committed a month ago
Verified
6619a0d94e627897838a79144704387db65a03bc

Merge pull request #34 from flavorjones/dependabot/bundler/precompiled/rake-compiler-dock-1.5.2

fflavorjones committed 5 months ago

README

The README file for this repository.

Ruby C Extensions, Explained

Background

Hello there! Welcome to Ruby C Extensions, Explained.

This repository, and the example ruby gems in it, were originally written as companion materials for some conference talks being given in 2021 by Mike Dalessio (@flavorjones).

(Video)

This talk focuses mostly on the mechanics of the gems in this repository.

RubyConf 2021 talk 2021-11-08

(Video)

This talk covers additional material, including how to test extensions, how to think about Trust in the context of precompilation, and why Nokogiri chose to start precompiling.

How To Use This Repository

Each of the gems in this repository demonstrate a different strategy for integrating with (or packaging) third-party libraries. A brief explanation of the strategies is below, and the code for each gem is in a distinct subdirectory, along with a README that contains a more complete explanation.

Each gem builds on the previous one if you tackle them in this order:

These are actual, working gems! And they've all been pushed to rubygems.org:

  • gem install rcee_isolated
  • gem install rcee_system
  • gem install rcee_packaged_source
  • gem install rcee_packaged_tarball
  • gem install rcee_precompiled

Or they can all be installed as dependencies of the meta-gem rcee:

  • gem install rcee

Also note that these gems are tested. In particular, the precompiled native gems have a rather complex setup to build, install, and test across platforms using rake-compiler-dock and Github Actions. See the Actions running at https://github.com/flavorjones/ruby-c-extensions-explained/actions

Strategies

A few commonly-followed approaches have emerged in the Ruby ecosystem. Broadly categorized, the strategies are:

Strategy 0, "isolated"

A self-contained C extension (no third-party libraries).

See subdirectory /isolated.

Real-world examples:

Strategy 1, "system"

Find and use an third-party library already installed on the target system.

See subdirectory /system.

Real-world examples:

Strategy 2a, "packaged_source"

Package the source code for the third-party library, and compile it into the C extension during installation.

See subdirectory /packaged_source.

Real-world examples:

Strategy 2b, "packaged_tarball"

Package the tarball distribution for the third-party library, use its configuration toolchain and build a library that the C extension can link against.

See subdirectory /packaged_tarball.

Real-world examples:

Strategy 3, "precompiled"

Precompile the library and C extension ahead-of-time for a subset of platforms; fall back to packaged_tarball strategy for other platforms.

See subdirectory /precompiled

Real-world examples:

Strategy Combinations

These strategies can also be combined!

"system", fallback to "packaged"

Real-world examples:

"precompiled", fall back to "packaged", leave option for "system"

Real-world examples:

FAQ

I'll try to answer questions asked during conference Q&A here.

How do you test cross-compiling gems on Github Actions?

Nokogiri uses the rake-compiler-dock OCI images directly to build the gem; and then uses the upload-artifact/download-artifact actions to install that gem on the target system.

See https://github.com/sparklemotion/nokogiri/blob/main/.github/workflows/gem-install.yml for the concrete implementation!

What's the significance of the flowers you're using as a background image for your RubyKaigi slides?

I tweeted a brief teaser video in which I explained the joke!

When I edited my RubyKaigi talk about C extensions, some bits had to be cut for time. Here's a fun teaser that I put together from some of those bits. [video link] pic.twitter.com/wZjSepHNpq

— mike dalessio (@flavorjones) September 9, 2021

In short, my friend Mark once sent me flowers for my birthday along with a card that read:

Fetching nokogiri-1.8.0.gem (100%)
Building native extensions. This could take a while...

Mark is funny. This was the inspiration for the talk's title.