enso/docs/polyglot
Pavel Marek a67297aebf
Add graalpy packages to the component directory (#8351)
Adds these JAR modules to the `component` directory inside Engine distribution:
- `graal-language-23.1.0`
- `org.bouncycastle.*` - these need to be added for graalpy language

# Important Notes
- Remove `org.bouncycastle.*` packages from `runtime.jar` fat jar.
- Make sure that the `./run` script preinstalls GraalPy standalone distribution before starting engine tests
- Note that using `python -m venv` is only possible from standalone distribution, we cannot distribute `graalpython-launcher`.
- Make sure that installation of `numpy` and its polyglot execution example works.
- Convert `Text` to `TruffleString` before passing to GraalPy - 8ee9a2816f
2023-12-04 11:50:59 +00:00
..
java.md Fluent Java Interop & Method Dispatch Refactor (#1443) 2021-02-01 15:56:20 +01:00
polyglot-bindings.md Support for Python libraries like numpy (#7678) 2023-08-30 06:10:18 +02:00
python.md Add graalpy packages to the component directory (#8351) 2023-12-04 11:50:59 +00:00
README.md Support for Python libraries like numpy (#7678) 2023-08-30 06:10:18 +02:00
typing-polyglot-bindings.md Add a markdown style guide (#1022) 2020-07-21 13:59:40 +01:00

layout title category tags order
section-summary Enso Polyglot Support polyglot
polyglot
readme
0

Enso Polyglot Support

Enso supports robust polyglot interoperation with other programming languages that are supported on its platform. This section of the design documentation deals with

It is broken down into the following sections:

  • Polyglot Bindings: A document providing an overview of the mechanisms provided to work with polyglot bindings in Enso.
  • Typing Polyglot Bindings: An exploration of how we can provide a modicum of type safety for the polyglot bindings in Enso.

It also provides language-specific documentation for the various supported polyglot languages. These are as follows:

  • Java: Information specific to the Java polyglot bindings.
  • Python: Information specific to the Python polyglot bindings.