There are many ways to build prism, which means the build system is a bit more complicated than usual.
- It must work to build prism for all 6 uses-cases below.
- It must be possible to build prism without needing ruby/rake/etc. Because once prism is the single parser in TruffleRuby, JRuby or CRuby there won't be another Ruby parser around to parse such Ruby code. Most/every Ruby implementations want to avoid depending on another Ruby during the build process as that is very brittle.
- It is desirable to compile prism with the same or very similar compiler flags for all use-cases (e.g. optimization level, warning flags, etc). Otherwise, there is the risk prism does not work correctly with those different compiler flags.
The main solution for the second point seems a Makefile, otherwise many of the usages would have to duplicate the logic to build prism.
- Templates are generated by
templates/template.rb
- The
Makefile
compiles bothlibprism.a
andlibprism.{so,dylib,dll}
from thesrc/**/*.c
andinclude/**/*.h
files - The
Rakefile
:compile
task ensures the above prerequisites are done, then callsmake
, and usesRake::ExtensionTask
to compile the C extension (using itsextconf.rb
), which useslibprism.a
This way there is minimal duplication, and each layer builds on the previous one and has its own responsibilities.
The static library exports no symbols, to avoid any conflict. The shared library exports some symbols, and this is fine since there should only be one libprism shared library loaded per process (i.e., at most one version of the prism gem loaded in a process, only the gem uses the shared library).
rake
calls make
and then uses Rake::ExtensionTask
to compile the C extension (see above).
The gem contains the pre-generated templates.
When installing the gem, extconf.rb
is used and that:
- runs
make build/libprism.a
- compiles the C extension with mkmf
When installing the gem on JRuby and TruffleRuby, no C extension is built, so instead of the last step,
there is Ruby code using FFI which uses libprism.{so,dylib,dll}
to implement the same methods as the C extension, but using serialization instead of many native calls/accesses
(JRuby does not support C extensions, serialization is faster on TruffleRuby than the C extension).
The same as above, except the extconf.rb
additionally runs first:
templates/template.rb
to generate the templates
Because of course those files are not part of the git repository.
This script imports prism sources in CRuby.
The script generates the templates when importing.
prism's Makefile
is not used at all in CRuby. Instead, CRuby's Makefile
is used.
This script imports prism sources in TruffleRuby. The script generates the templates when importing.
Then when mx build
builds TruffleRuby and the prism
mx project inside, it runs make
.
Then the prism bindings
mx project is built, which contains the bindings
and links to libprism.a
(to avoid exporting symbols, so no conflict when installing the prism gem).
TODO, similar to TruffleRuby.
For instance, you can build a static library libprism.a
targeting the Arm Cortex-M0+ embedded system by the commands below:
templates/template.rb
CFLAGS="-mcpu=cortex-m0plus" make static CC=arm-none-eabi-gcc
The build process internally looks up _POSIX_MAPPED_FILES
and _WIN32
macros to determine whether the functions of the memory map are available on the target platform.
If you need to use memory allocation functions implemented outside of the standard library, follow these steps:
- Add
-D PRISM_XALLOCATOR
to the build options - Additionally, include
-I [path/to/custom_allocator]
where yourprism_xallocator.h
is located - Link the implementation of
prism_xallocator.c
that contains functions declared inprism_xallocator.h
For further clarity, refer to include/prism/defines.h
.
All of the source files match src/**/*.c
and all of the headers match include/**/*.h
.
If you want to build prism as a shared library and link against it, you should compile with:
-fPIC -shared
- Compile as a shared library-DPRISM_EXPORT_SYMBOLS
- Export the symbols (by default nothing is exported)
make
respects the MAKEFLAGS
environment variable. As such, to speed up the build you can run:
MAKEFLAGS="-j10" bundle exec rake compile
PRISM_BUILD_DEBUG
- Will cause all file reading to copy into its own allocation to allow easier tracking of reading off the end of the buffer. By default this is off.PRISM_BUILD_MINIMAL
- Define all of thePRISM_EXCLUDE_*
flags at once.PRISM_ENCODING_EXCLUDE_FULL
- Will cause the library to exclude the full encoding API, and only include the minimal number of encodings to support parsing Ruby code without encoding comments. By default this is off.PRISM_EXPORT_SYMBOLS
- Will cause the shared library to export symbols. By default this is off.PRISM_EXCLUDE_JSON
- Will cause the library to exclude the JSON API. By default this is off.PRISM_EXCLUDE_PACK
- Will cause the library to exclude the pack API. By default this is off.PRISM_EXCLUDE_PRETTYPRINT
- Will cause the library to exclude the prettyprint API. By default this is off.PRISM_EXCLUDE_SERIALIZATION
- Will cause the library to exclude the serialization API. By default this is off.PRISM_XALLOCATOR
- Will cause the library to use the custom memory allocator. By default this is off.