Fl4m3Ph03n1x
Background
I have an umbrella app where I am making a build for windows using bakeware:
https://github.com/bake-bake-bake/bakeware
I have followed the normal setup for windows:
choco install -y zstandard make mingw
I have installed elixir and erlang otp via their official website installers:
Problem
I am able to run and do everything normally, but my VSCode marks my mix.exs file as a huge red error blob:
an exception was raised:
** (Mix.Error) Could not compile with "make" (exit status: 2).
(mix 1.13.1) lib/mix.ex:515: Mix.raise/2
(elixir_make 0.6.3) lib/mix/tasks/compile.make.ex:154: Mix.Tasks.Compile.ElixirMake.run/1
(mix 1.13.1) lib/mix/task.ex:397: anonymous fn/3 in Mix.Task.run_task/3
(mix 1.13.1) lib/mix/tasks/compile.all.ex:92: Mix.Tasks.Compile.All.run_compiler/2
(mix 1.13.1) lib/mix/tasks/compile.all.ex:72: Mix.Tasks.Compile.All.compile/4
(mix 1.13.1) lib/mix/tasks/compile.all.ex:59: Mix.Tasks.Compile.All.with_logger_app/2
(mix 1.13.1) lib/mix/tasks/compile.all.ex:36: Mix.Tasks.Compile.All.run/1
(mix 1.13.1) lib/mix/task.ex:397: anonymous fn/3 in Mix.Task.run_task/3ElixirLS
Question
In Bakeware’s page there is a section:
Change the default
MAKEenvironment variable used byelixir_makefromnmaketomake(set it permanently to get rid of the errors in VSCode)
- But how do I do this?
- Is something wrong with my VSCode setup?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
axelson
What extension are you using? You’ve tagged vscode-elixir which is not maintained and hasn’t been updated since 2017. If you use ElixirLS then you can set arbitrary environment variables if you’re using the latest version. Here’s the PR that exposed it in the VSCode extension add setting for environment variables by vacarsu · Pull Request #213 · elixir-lsp/vscode-elixir-ls · GitHub
Fl4m3Ph03n1x
@axelson My bad, you are correct I am using ElixirLS.
In order to try and fix it I have read this file on how to have a proper
mix.exsfile setup for make:And I ended up with the following:
I have also set a Windows System Env Var:
I have also searched in ElixirLs’s settings page in VSCode and I was not able to find anything that would allow me to take advantage of the new PR (aka, no section called “define env vars”). I am sure I missed it:
Aside from a couple settings on the top regarding dialyzer, I found nothing.
The error still persists (albeit in a different form), I am not sure why…
Fl4m3Ph03n1x
I was able to somehow fix the issue.
Bakeware, the dependency, really likes Powershell. But not any powershell. A powershell with admin rights.
To get rid of the warning one must perform the following steps while VSCode is closed:
$env:CC="gcc"$env:MAKE="make"MIX_ENVto something. It doesnt have to beprod, but since powershell does not set this value by default, you have to manually set it yourself. Before running tests, fetching dependencies or anything.mix deps.getAfter this, if you still get the red wall of death, trying deleting your
.elixir_lsfolder to force to go again.Then open VSCode with
code .Hope it works for you, it did for me.
Trying this with any other terminal will result in seeing the red wall of death. According to my experiments, powershell is the only that works.
cmo
In my experience, you don’t need to use PowerShell, nor do you require it to be an administrative shell. You do however need to set those environment variables, which I’m sure I added to the readme. Setting MAKE with the
$envcommand won’t last, so do it through the Windows UI (press Windows key and type ‘env’ and the shortcurt should show up) to keep VSCode happy.Fun fact, you can also use zig as your c compiler with
CC=zig cc.