c355e3b has quit [Quit: Connection closed for inactivity]
killerswan has quit [Quit: killerswan]
SilverKey has quit [Quit: Cheerio!]
jemc has joined #ponylang
<emilbayes>
I looked at the thread about a package manager in the github issues, but have a couple of concerns, given what we've learned in the node.js community. Eg. decoupleing package management from linking, and packages being content addressable instead of being linked by version (version being an alias to a hash, so it's still human friendly :) )
emancu has joined #ponylang
jemc has quit [Ping timeout: 265 seconds]
amclain has quit [Quit: Leaving]
montanonic has joined #ponylang
tm-exa has joined #ponylang
tm-exa has quit [Read error: Connection reset by peer]
tm-exa has joined #ponylang
tm-exa has quit [Client Quit]
montanonic has quit [Ping timeout: 260 seconds]
gsteed has joined #ponylang
jeremyheiler has quit [Ping timeout: 240 seconds]
jeremyheiler has joined #ponylang
tm-exa has joined #ponylang
tm-exa has quit [Client Quit]
c355e3b has joined #ponylang
_andre has joined #ponylang
michael_campbell has joined #ponylang
tm-exa has joined #ponylang
trapped has joined #ponylang
tm-exa has quit [Quit: Computer has gone to sleep]
tm-exa has joined #ponylang
trapped has quit [Read error: Connection reset by peer]
Perelandric has joined #ponylang
tm-exa has quit [Quit: Computer has gone to sleep]
tm-exa has joined #ponylang
rurban has joined #ponylang
rurban has left #ponylang [#ponylang]
emancu has quit []
runehog has quit [Remote host closed the connection]
jemc has joined #ponylang
amclain has joined #ponylang
SilverKey has joined #ponylang
tm-exa has quit [Read error: No route to host]
tm-exa has joined #ponylang
Praetonus has joined #ponylang
graaff has joined #ponylang
jemc has quit [Quit: WeeChat 1.4]
jemc has joined #ponylang
amclain has quit [Quit: Leaving]
amclain has joined #ponylang
tm-exa has quit [Max SendQ exceeded]
tm-exa has joined #ponylang
runehog has joined #ponylang
kulibali has joined #ponylang
tm-exa has quit [Max SendQ exceeded]
tm-exa has joined #ponylang
tm-exa has quit [Quit: Computer has gone to sleep]
graaff has quit [Quit: Leaving]
montanonic has joined #ponylang
SilverKey has quit [Quit: Halted.]
Matthias247 has joined #ponylang
mcguire has joined #ponylang
tm-exa has joined #ponylang
tm-exa has quit [Ping timeout: 276 seconds]
iiv has joined #ponylang
<iiv>
Hello! I have some trouble compiling ponyc and I'd like some help... I am on Ubuntu 16.4 and when I type 'make' it spits out a huge error message mostly containing of 'expected declaration specifiers before '<something>''
<iiv>
I have tried googling everything I can think about that is relevant, but to no success
<iiv>
Another thing it spits out a lot of: 'unused parameter ‘<something>’'
<iiv>
(I'm pretty desperate here, as you can see by my wall of text...)
<Praetonus>
iiv: Looks like we're using a compiler extension not supported by your compiler. Could you open an issue on Github with the name and version of your compiler?
<iiv>
Praetonus: I just realised what the problem was! I had a bunch of CFLAGS in my ~/.bashrc that made it incompatible!
<iiv>
Thanks!
<iiv>
It was thanks to you that came to think of that, thank you very much
<Praetonus>
You're welcome
tm-exa has joined #ponylang
tm-exa has quit [Client Quit]
_andre has quit [Quit: Lost terminal]
<michael_campbell>
Out of curiosity, what flags were in your .bashrc?
<michael_campbell>
Glad you found it iiv; I would have though Ubuntu 16.04's gcc to be pretty vanilla.
<iiv>
-ggdb3 -O0 -std=c99 -Wall -Werror
<michael_campbell>
c99 the offender?
<iiv>
I don't know, I removed them all
* michael_campbell
nods
<iiv>
When I added those flags I didn't know about 'make' and I had no intention to compile others software
iiv has quit [Ping timeout: 250 seconds]
runehog has quit [Remote host closed the connection]
runehog has joined #ponylang
runehog has quit [Ping timeout: 276 seconds]
ii-v has joined #ponylang
<ii-v>
Hey, quick question, is `new create() =>` basically the same as pythons `__init__():`?
<Praetonus>
ii-v: Yes, it's the same idea. The main difference is that in Python the constructor must be called __init__ whereas in Pony a constructor can have a user-defined name