Fernando Braga
Fernando Braga
I worked around this problem by downloading byebug, patching it, and installing a local-compiled gem. This patch allows CFLAGS into makefile. ``` --- a/ext/byebug/extconf.rb +++ b/ext/byebug/extconf.rb @@ -5,6 +5,7 @@...
Hi, You need to define :config_path in your project. Something like this: ``` def project do [ app: :ssl_demo_01, version: "0.1.0", elixir: "~> 1.13", config_path: "config/config.exs", start_permanent: Mix.env() == :prod,...
choose_node/2 receives a child_spec. Since child_spec is an ordinary map, you could add a :preferred_node into it, and choose_node would have something to decide where to start your process.