jemc has quit [Read error: Connection reset by peer]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 250 seconds]
Perelandric has quit [Ping timeout: 240 seconds]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 265 seconds]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 265 seconds]
jemc has joined #ponylang
dynarr has joined #ponylang
amclain has quit [Quit: Leaving]
graaff has joined #ponylang
dynarr_ has joined #ponylang
dynarr_ has quit [Ping timeout: 240 seconds]
trapped has joined #ponylang
dynarr_ has joined #ponylang
dynarr_ has quit [Ping timeout: 244 seconds]
trapped has quit [Read error: Connection reset by peer]
dynarr_ has joined #ponylang
dynarr_ has quit [Ping timeout: 265 seconds]
dynarr_ has joined #ponylang
dynarr_ has quit [Ping timeout: 250 seconds]
jemc has quit [Ping timeout: 276 seconds]
dynarr has quit [Quit: A merry Christmas to all, and to all a good night!]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 260 seconds]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 260 seconds]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 248 seconds]
dynarr has joined #ponylang
dinfuehr has quit [Ping timeout: 240 seconds]
dynarr has quit [Ping timeout: 244 seconds]
dinfuehr has joined #ponylang
anqur has joined #ponylang
dynarr has joined #ponylang
rosstuck has joined #ponylang
dynarr has quit [Ping timeout: 260 seconds]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 255 seconds]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 265 seconds]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 272 seconds]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 240 seconds]
trapped has joined #ponylang
anqur has quit [Quit: Connection closed for inactivity]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 240 seconds]
montanonic has quit [Ping timeout: 248 seconds]
testt has joined #ponylang
<testt>
the code of conduct is quite limiting to be honest, i dont know if I'm allowed to say that I'm a Trump supporter.. maybe some people see that as harassment
_andre has joined #ponylang
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 276 seconds]
trapped has quit [Read error: Connection reset by peer]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 265 seconds]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 265 seconds]
Perelandric has joined #ponylang
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 240 seconds]
dynarr has joined #ponylang
emancu has left #ponylang [#ponylang]
dynarr has quit [Ping timeout: 255 seconds]
<SeanTAllen>
Well, you already did and you haven't been warned. That said, this is a channel to discuss pony not politics. So if you start discussing politics or others do, you'll be asked to stay on topic.
zaquest has left #ponylang ["Leaving"]
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 244 seconds]
jemc has joined #ponylang
dynarr has joined #ponylang
dynarr has quit [Ping timeout: 244 seconds]
jemc has quit [Quit: WeeChat 1.4]
jemc has joined #ponylang
dynarr has joined #ponylang
CcxCZ has joined #ponylang
amclain has joined #ponylang
rosstuck has quit [Ping timeout: 255 seconds]
mcguire has joined #ponylang
graaff has quit [Quit: Leaving]
runehog has quit [Remote host closed the connection]
dynarr has quit [Quit: leaving]
mvzink has joined #ponylang
mcguire has quit [Ping timeout: 255 seconds]
runehog has joined #ponylang
k0nsl has quit [Ping timeout: 244 seconds]
k0nsl has joined #ponylang
montanonic has joined #ponylang
_andre has quit [Quit: leaving]
k0nsl has quit [Ping timeout: 240 seconds]
k0nsl has joined #ponylang
runehog_ has joined #ponylang
runehog has quit [Ping timeout: 248 seconds]
runehog_ has quit [Ping timeout: 244 seconds]
polypus74 has joined #ponylang
<polypus74>
trying to bake a pony binary into a docker image. i'm getting a process caused file not found error. it is a hello world program, so it isn't accessing anything. i'm guessing it's some kind of dynamic library loading issue. is there a way of creating a staticly linked binary? could there be some other cause?
<polypus74>
*statically
<polypus74>
huh, works with an ubuntu base image, just not busybox or alpine.
<jemc>
polypus74: what file is not found?
<jemc>
or I suppose, what exactly do you see for the error?
pyon has quit [Quit: Fix config.]
pyon has joined #ponylang
pyon has quit [Client Quit]
pyon has joined #ponylang
Matthias247 has joined #ponylang
runehog has joined #ponylang
<polypus74>
jemc: standard_init_linux.go:175: exec user process caused "no such file or directory"
<polypus74>
note this happens when running the container, not building it. i don't get any more than that unfortunately. i'm just learning docker so i'm not sure if there is a way to get more
<jemc>
I've never seen docker give an error that gives a `go` source line number - pretty weird
<polypus74>
ok. looks like pony tries to load libgcc_s.so
<polypus74>
which is not present on naked alpine
<jemc>
come to think of it, I don't think pony has been ported to musl yet
<jemc>
when I was working on the "official" ponyc dockerfile, I wanted to make it an alpine one, but ran into musl-related compile errors that would need fixing
<jemc>
I was doing this the night before a talk, and just wanted to get the docker releases out there, so I used an ubuntu image to start with
<jemc>
so far I haven't had a chance to come back and fix the musl-related issues
<polypus74>
yeah. i messed around with docker a year ago or so and was always having musl issues. bit then i don't know much about either. too bad there isn't a light weight alternative to ubuntu w/o musl
<jemc>
running pony programs in barebones alpine docker images is definitely a long-term goal of mine, so I'd be interested in helping you make it work