Or the easiest way for me is to make debian folder for builds for
exact platforms, which must be stored near erlyvideo?
________________________________________________________________
erlang-questions (at) erlang.org mailing list.
See http://www.erlang.org/faq.html
To unsubscribe; mailto:erlang-questio...@erlang.org
vds
Maybe it is a good idea to split into erlang and erlang-dev, maybe
not, but when there are no fresh packages for months and it still
requires some knowledge hidden inside one person to build a package,
everything ends in ./configure && make && make install on production
server.
I tried to build R14B for squeeze, but failed: too complex build setup
required. If situation doesn't change, I will have to refuse from
building debian package because of no erlang in debian or ubuntu.
It may be that its easier to package when you have a single package for
the whole thing?
Anyway, maybe it will help in packaging for debian/ubuntu, to see an
rpm example?
-Anthony
--
------------------------------------------------------------------------
Anthony Molinaro <anth...@alumni.caltech.edu>
--
Sivieri Alessandro
alessandr...@gmail.com
http://www.chimera-bellerofonte.eu/
http://www.poul.org/
vds
I think it will make things much worse.
> Anyway, maybe it will help in packaging for debian/ubuntu, to see an
> rpm example?
If it's one big huge rmp, nope it's not going to help. :)
Thanks,
vds
-Anthony
I don't understand what for to split erlang into many several
subpackages. Who in the hell will ever install only erlang-corba
without, for example, erlang-megaco?
It's actually the other way around, why would I have erlang-corba on my
machine if I only run say CouchDB?
Thanks,
vds
I'm not speaking about "what can be in ideal world". I'm speaking
about: have you ever deselected erlang-corba, when running only
couchdb?
Sorry I am speaking of an ideal world, because I don't see it very far.
In Ubuntu, at the moment we have around 50 packages out of one single
Erlang tarball. If we can only move the effort a bit the from creating
distribution packages to releasing a tarball that can be packaged more
easily, it will pay a lot in the long term.
Thanks,
vds
> On Sun, Oct 31, 2010 at 1:23 AM, Vincenzo Di Somma
> <vincenzo...@canonical.com> wrote:
>>
>> It's actually the other way around, why would I have erlang-corba on my
>> machine if I only run say CouchDB?
>> Thanks,
>> vds
>
> I'm not speaking about "what can be in ideal world". I'm speaking
> about: have you ever deselected erlang-corba, when running only
> couchdb?
Uh, yes. This is not ideal world, this is a real problem that affects end users. Ubuntu includes CouchDB on the livecd, and absolutely does not want all of OTP dragged in as a dependency. Every release there is pressure to remove Erlang and CouchDB to free up more space on the CD. Every few K helps - I want these technologies available in more environments such as mobile and tablet, where space is even more important.
-elliot
In summary: use it at your own risk; if you find it useful, good for you :)
I'm trying to develop an wx application which requires SMP. But by default the emacs tools are leaving me in non-smp mode. How do I switch my default shell in emacs to an smp enabled one? NB: erl -smp works fine on the command prompt.
In ubuntu with latest version (tools-2.6.6.1)
thanks,
Aaron
in /lib/tools-2.6.6.1/emacs/erlang.el
I switched the variable erlang-machine-opts to '("-smp") from '()
Now I can compile wx and run wx programs in emacs
Thanks:-),
Aaron
> erlang:system_info(schedulers).
12
/Dan
PS: If you read/modified the code you could have seen that :-)
Off topic question. Could someone please explain me what's
the benefits of this "+S" option (and the "+A" option by the way).
How to choose their values?
--
Regards
Zabrane
2010/11/2 Dan Gudmundsson <dg...@erlang.org>:
> C-u M-x erlang-shell
> erl -smp +S12
>
>> erlang:system_info(schedulers).
> 12
________________________________________________________________
mz> Off topic question. Could someone please explain me what's the
mz> benefits of this "+S" option (and the "+A" option by the way).
The +A option allows you to specify the size of the I/O worker thread
pool. For moderate and high workloads that involve the local file
system(*), you'll likely see a performance improvement by using it.
-Scott
(*) All UNIX variants that I'm aware of will ignore any request to
perform asynchronous I/O on the local file system unless you explicitly
use the async API. And even the async API doesn't have async versions
of some system calls like unlink(2).