aturley has quit [Ping timeout: 268 seconds]
SilverKey has joined #ponylang
jemc has joined #ponylang
yonkeltron has joined #ponylang
aturley has joined #ponylang
yonkeltron has quit [Changing host]
yonkeltron has joined #ponylang
aturley has quit [Ping timeout: 260 seconds]
jemc_ has joined #ponylang
SilverKey has quit [Quit: Halted.]
aturley has joined #ponylang
aturley has quit [Ping timeout: 240 seconds]
jemc has quit [Ping timeout: 250 seconds]
jemc_ has quit [Ping timeout: 260 seconds]
SilverKey has joined #ponylang
SilverKey has quit [Quit: Halted.]
SilverKey has joined #ponylang
jemc has joined #ponylang
jemc_ has joined #ponylang
aturley has joined #ponylang
aturley has quit [Ping timeout: 250 seconds]
jemc_ has quit [Quit: WeeChat 1.4]
aturley has joined #ponylang
aturley has quit [Ping timeout: 276 seconds]
SilverKey has quit [Quit: Halted.]
aturley has joined #ponylang
SilverKey has joined #ponylang
aturley has quit [Ping timeout: 276 seconds]
copy` has quit [Quit: Connection closed for inactivity]
gsteed has joined #ponylang
aturley has joined #ponylang
aturley has quit [Ping timeout: 276 seconds]
SilverKey has quit [Quit: Halted.]
aturley has joined #ponylang
aturley has quit [Ping timeout: 244 seconds]
srenatus has joined #ponylang
trapped has joined #ponylang
M-hrjet has quit [Ping timeout: 260 seconds]
M-hrjet has joined #ponylang
aturley has joined #ponylang
aturley has quit [Ping timeout: 250 seconds]
BrotherLy has joined #ponylang
<
BrotherLy>
STILL DOESNT WORK
<
BrotherLy>
[pc@localhost release]$ ./ponyc test.pony
<
BrotherLy>
Building builtin -> /home/pc/ponyc/packages/builtin
<
BrotherLy>
test.pony: couldn't locate this path
_andre has joined #ponylang
aturley has joined #ponylang
juanjoc has joined #ponylang
aturley has quit [Ping timeout: 268 seconds]
<
doublec>
BrotherLy: Is test.pony your own code that you're trying to compile?
<
doublec>
BrotherLy: if so, make a directory, put test.pony in that directory, then do "ponyc <directoryname>"
<
doublec>
BrotherLy: eg. mkdir test && mv test.pony test/ && ponyc test
SilverKey has joined #ponylang
copy` has joined #ponylang
BrotherLy has quit [Quit: Leaving]
SilverKey has quit [Ping timeout: 240 seconds]
SilverKey has joined #ponylang
yonkeltron has quit [Ping timeout: 250 seconds]
jemc has quit [Ping timeout: 250 seconds]
jemc has joined #ponylang
hakvroot_ has quit [Ping timeout: 250 seconds]
SilverKey has quit [Ping timeout: 268 seconds]
_andre has quit [Ping timeout: 268 seconds]
_andre has joined #ponylang
hakvroot has joined #ponylang
<
sylvanc>
jemc: awesome!
<
sylvanc>
watching it now
aturley has joined #ponylang
aturley has quit [Ping timeout: 260 seconds]
aturley has joined #ponylang
<
sylvanc>
i really love listening to other people talk about pony :)
<
sylvanc>
the guy with the question about primitives was thinking about machine words
<
sylvanc>
i really like joe's alternate view on why type safety is worthwhile
<
ohir>
jemc: thx for the talk :)
<
sylvanc>
heheh just got to "the main reason it's statically typed is that the creator is a type systems nerd"
<
sylvanc>
so true :)
SilverKey has joined #ponylang
SilverKey has quit [Client Quit]
<
sylvanc>
lambda captures only have to be sendable if the lambda is sendable
<
sylvanc>
oh nevermind, you just got to that :)
aturley has quit [Ping timeout: 246 seconds]
SilverKey has joined #ponylang
gsteed has quit [Quit: Leaving]
aturley has joined #ponylang
SilverKey has quit [Quit: Halted.]
<
sylvanc>
nice work jemc
jemc has quit [Ping timeout: 244 seconds]
SilverKey has joined #ponylang
amclain has joined #ponylang
SilverKey has quit [Quit: Halted.]
jemc has joined #ponylang
SilverKey has joined #ponylang
graaff has joined #ponylang
TwoNotes has joined #ponylang
<
TwoNotes>
I have been playing with some ideas about visualizing Pony capabilitity concept.
<
jemc>
sylvanc: I only felt free to call you a type systems nerd since you recently called yourself that last week :D
aturley has quit [Ping timeout: 244 seconds]
aturley has joined #ponylang
SilverKey has quit [Quit: Halted.]
amclain_ has joined #ponylang
amclain has quit [Ping timeout: 246 seconds]
amclain_ has quit [Client Quit]
amclain has joined #ponylang
SilverKey has joined #ponylang
SilverKey has quit [Client Quit]
SilverKey has joined #ponylang
amclain has quit [Ping timeout: 250 seconds]
amclain has joined #ponylang
SilverKey has quit [Quit: Halted.]
<
jemc>
it's about some successful approaches that the rust community has had in building community
<
jemc>
probably worth a look as we try to approach building ours
graaff has quit [Quit: Leaving]
<
sylvanc>
excellent!
gsteed has joined #ponylang
_whitelogger has joined #ponylang
SilverKey has joined #ponylang
nyarum has joined #ponylang
<
nyarum>
Hello, guys :)
<
nyarum>
How I can use external library via FFI?
<
nyarum>
But I get message like "/usr/bin/ld.gold: error: cannot find -lsmaz
<
nyarum>
main.pony:36: error: undefined reference to 'smaz_compress'"
<
nyarum>
I would be happy if you can help with that :3
<
TwoNotes>
There is a command-line switch to tell the compiler where to look for the library, if it is not in one of the usual places
<
nyarum>
You about "--path" key?
<
TwoNotes>
And the library name
*must* start with the letters "lib"
<
TwoNotes>
Yes, --path. But if your FFI is in a place like /usr/lib, you should not have to specify
<
nyarum>
So, if I have library near my program?
<
nyarum>
As on screenshot
<
TwoNotes>
Specify path to the directory containing your .so file.
<
TwoNotes>
But the filename must begin with "lib", like libsmaz.so
<
nyarum>
Good, I already testing this case :D
<
TwoNotes>
Probably libsmaz.a would also work
<
nyarum>
I love you, TwoNotes :3 :3 :3
<
nyarum>
It is working!
<
TwoNotes>
It took me a while to figure out the "lib" thing
<
TwoNotes>
Yes, .a works. Thats how I did it.
<
nyarum>
Yep, and this not specify in tutorial.
<
TwoNotes>
Use the 'ar' command to create the .a library file from your .o
<
nyarum>
Thank you, I will working on pcap wrapper
tlockney__ has quit [Ping timeout: 264 seconds]
tlockney__ has joined #ponylang
juanjoc has quit [Ping timeout: 244 seconds]
mcguire has joined #ponylang
mcguire has left #ponylang [#ponylang]
mcguire has joined #ponylang
<
nyarum>
Nice, FFI work is wonderful! :)
SilverKey has quit [Quit: Halted.]
nyarum1 has joined #ponylang
nyarum1 has quit [Client Quit]
trapped has quit [Read error: Connection reset by peer]
TwoNotes has quit [Quit: Leaving.]
SilverKey has joined #ponylang
aturley has quit [Ping timeout: 244 seconds]
_andre has quit [Ping timeout: 250 seconds]
gsteed has quit [Quit: Leaving]
_andre has joined #ponylang
aturley has joined #ponylang
aturley has quit [Ping timeout: 250 seconds]
SilverKey has quit [Quit: Halted.]
SilverKey has joined #ponylang
_andre has quit [Ping timeout: 250 seconds]