Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude directories from external resources to be compatible with Elixir 1.15 #548

Merged
merged 1 commit into from
Jun 27, 2023

Conversation

adrienmo
Copy link
Contributor

Elixir 1.15 handles external resources differently:

https://github.com/elixir-lang/elixir/blob/v1.15.0/CHANGELOG.md#mix

[mix compile] Track digests of @external_resources

It will try to read the file content and compute a digest to know if the file should be recompiled. https://github.com/elixir-lang/elixir/blob/96996cef7dbdbb5daa8c8009d1e51582d4c4023e/lib/mix/lib/mix/compilers/elixir.ex#L445C1-L445C1

Because rustler includes directories in the @external_resources module attribute, trying to recompile after a first compilation will fail with this error:

** (File.Error) could not read file "native/name_of_project/src": illegal operation on a directory
    (elixir 1.15.0) lib/file.ex:358: File.read!/1
    (mix 1.15.0) lib/mix/compilers/elixir.ex:441: Mix.Compilers.Elixir.digest_file!/1
    (mix 1.15.0) lib/mix/compilers/elixir.ex:426: Mix.Compilers.Elixir.stale_external?/3
    (elixir 1.15.0) lib/enum.ex:4190: Enum.predicate_list/3
    (mix 1.15.0) lib/mix/compilers/elixir.ex:394: anonymous fn/6 in Mix.Compilers.Elixir.compiler_info_from_updated/9
    (elixir 1.15.0) lib/enum.ex:2510: Enum."-reduce/3-lists^foldl/2-0-"/3
    (mix 1.15.0) lib/mix/compilers/elixir.ex:385: Mix.Compilers.Elixir.compiler_info_from_updated/9
    (mix 1.15.0) lib/mix/compilers/elixir.ex:134: Mix.Compilers.Elixir.compile/7

@josevalim
Copy link
Contributor

Note that we also have a fix for this in Elixir but I also recommend merging this. :)

@filmor filmor merged commit 6d64c16 into rusterlium:master Jun 27, 2023
26 checks passed
filmor pushed a commit that referenced this pull request Jun 29, 2023
Signed-off-by: Adrien Moreau <[email protected]>
Co-authored-by: Adrien Moreau <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants