rebar Questions
2
Solved
I can use nif's if I write the escript myself, however when I use rebar escriptize the nif functions cannot be found. I think it is because *.so objects are not getting packed like beam files. Here...
Lydon asked 25/3, 2013 at 14:45
1
Solved
I'm new to Erlang and Rebar and just created my first rebar project.
My development cycle looks like that:
Edit project files
Invoke rebar compile to recompile project
Run my start.bat file to ...
3
Solved
I have compiled my Erlang application by using basho rebar which makes an stand-alone escript executable file. I run it from command line like:
./myapp myconfig.config
My questio is that how can I...
1
Solved
rebar is in the current directory.
$ls -l rebar
--rwxr-xr-x 1 *** wheel 90778 8 6 23:05 rebar*
$./rebar
escript: no such file or directory: './rebar'
$whereis escript
escript: /usr/local/bin/esc...
Witticism asked 8/9, 2012 at 3:38
3
Solved
I have an Erlang application which has a dependency in its deps directory on another application.
From what I understand I can either;
a) start my dependent application from my including applicat...
Giantess asked 21/6, 2012 at 15:11
1
Solved
I have a Rebar project with a top-level release directory that just includes the component applications as dependencies and contains the reltool configuration.
Some of my applications have Common ...
Kaufmann asked 29/6, 2012 at 15:54
2
Solved
My app uses Mochiweb.
I have noticed that Mochiweb files reside in the myapp/deps/mochiweb directory and rebar compiles them when I run make in the myapp directory.
I wanted to add ibrowse to wri...
Counterword asked 17/5, 2012 at 15:48
1
Solved
We're using rebar to pull dependencies for our project, many of them from github. Our config looks something like:
{deps, [
{cowboy, "", {git, "git://github.com/extend/cowboy.git", {branch, "mast...
3
Solved
I am unable to get any dependency from github using rebar.
rebar.config file:
{sub_dirs, ["rel"]}.
{deps_dir, ["deps"]}.
{erl_opts, [debug_info]}.
{deps, [
{thrift_erl, "0.5.0", {git, "git://g...
1
Solved
I am trying to run rebar generate to generate a release for an erlang rebar project and getting the following error. Any ideas what I am doing wrong?
./rebar generate
Command 'generate' not unders...
4
Solved
I'm a beginner with rebar and erlang generally. I was trying to create an erlang release with rebar according to this tutorial: http://www.metabrew.com/article/erlang-rebar-tutorial-generating-rele...
4
Solved
I want to use some libs in my application, like https://github.com/Panmind/erlang-ruby-marshal. That repo holds an src dir, but has no .app file (because it's not an application), so I can't use ge...
Consumedly asked 1/4, 2011 at 7:55
3
Solved
When I'm testing my erlang application on localhost, I have a script that starts the server that looks like the following:
#!/bin/sh
PWD="$(pwd)"
NAME="$(basename $PWD)"
erl -pa "$PWD/ebin" deps/*...
© 2022 - 2024 — McMap. All rights reserved.