mstalker
I’m using a Docker image that has Erlang/OTP 20. If I use a version of Elixir compiled with OTP 19, can I expect the same bytecode output when I compile my dependencies, as if I had an Elixir compiled with OTP 20?
I want to make sure I don’t have any issues when my Elixir version was compiled with a different OTP version than my system is running.
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’ve followed the Phoenix LiveView file upload code here Uploads — Phoenix LiveView v1.0.0-rc.7 and so far everything works just fine wit...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #iex
- #elixirconf-us
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
OvermindDL1
Elixir compiled with OTP19 should work on OTP20 (else it’s a bug), however not the reverse.
CptnKirk
Is only 1 version difference supported, or all future versions? 19 → 20 is ok, how about 19 → 21, etc?
NobbZ
No you can’t! Elixir does on its own compile time a feature selection based on the OTP/ERTS that is compiling the elixir.
When elixir is compiled on OTP 19 it will not generate code that uses 20s features. But if such an elixir is running under an 20 run time the byte code it will spit out will be for OTP 20.
I hope you get what I mean… Hard to describe…
Ps: byte code is generated by the Erlang compiler. Elixir compiles into a subset of Erlang which is called Erlang core.
OvermindDL1
Of course yep, OTP20 features will be missing from an Elixir with OTP19, like color coded diff errors and such as one of a few examples.
NobbZ
So this feature stuff and the fact that actually erlc will generate the byte code results in the fact, that elixir compiled on 19 and 20 won’t generate the same byte code from same input.
But any module compiled on OTP X should also run on OTP X + Y with Y beeing an element of N.
outlog
while it should work going that way..
I would really recommend absolute dev/staging/production parity - even so pedantic down to exact patch version..
you can use something like asdf version manager · GitHub on your dev box to install the appropriate versions on a per project level..
jswny
Yep and if you want to install Elixir compiled with a certain (major) version of Erlang with asdf, you can do something like
asdf install elixir 1.6.0-otp-20mstalker
Thanks, everyone! It looks like asdf uses Elixir bulids precompiled by Bob. How reliable are those builds? Are they officially supported?
NobbZ
Bob is as official as anything from the hex-team. And you can also build from elixir and Erlang directly from git, by tag, branch, or sha, but as I’m on mobile I can’t lookup the necessary syntax right now. But I remember it was only documented as a generic feature of asdf and not in the asdf exixir plugin repository.