<codec__>
@SeanTAllen have you any tips to debug crash in the compiler?
<codec__>
I try to put print before the crash happen but nothing show on the terminal
Guest46388 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<SeanTAllen>
@codec__ build a debug version of the compiler and run it with lldb
<codec__>
after 1 good hour I found the bug :), but is it possible to build a debug version on Windows?
oraoro has quit [Ping timeout: 248 seconds]
acarrico has quit [Ping timeout: 248 seconds]
oraoro has joined #ponylang
acarrico has joined #ponylang
acarrico has quit [Quit: Leaving.]
codec__ has quit [Ping timeout: 260 seconds]
oraoto has joined #ponylang
oraoro has quit [Ping timeout: 240 seconds]
Nat_ has joined #ponylang
oraoto has quit [Remote host closed the connection]
oraoro has joined #ponylang
oraoro has quit [Ping timeout: 248 seconds]
oraoro has joined #ponylang
oraoro has quit [Ping timeout: 240 seconds]
oraoto has joined #ponylang
oraoto has quit [Ping timeout: 248 seconds]
oraoro has joined #ponylang
oraoto has joined #ponylang
oraoro has quit [Ping timeout: 248 seconds]
oraoro has joined #ponylang
oraoto has quit [Ping timeout: 248 seconds]
oraoro has quit [Ping timeout: 248 seconds]
gokr has joined #ponylang
oraoto has joined #ponylang
oraoto has quit [Ping timeout: 260 seconds]
Nat_ has quit [Read error: Connection reset by peer]
user10032 has joined #ponylang
oraoro has joined #ponylang
user10032 has quit [Quit: Leaving]
oraoro has quit [Ping timeout: 240 seconds]
user10032 has joined #ponylang
user10032 has quit [Client Quit]
user10032 has joined #ponylang
user10032 has quit [Client Quit]
user10032 has joined #ponylang
gokr has quit [Ping timeout: 250 seconds]
user10032 has quit [Client Quit]
oraoro has joined #ponylang
oraoto has joined #ponylang
oraoro has quit [Ping timeout: 240 seconds]
oraoto has quit [Ping timeout: 240 seconds]
oraoro has joined #ponylang
oraoto has joined #ponylang
oraoro has quit [Ping timeout: 268 seconds]
oraoto has quit [Ping timeout: 240 seconds]
oraoro has joined #ponylang
oraoro has quit [Ping timeout: 240 seconds]
oraoto has joined #ponylang
oraoto has quit [Ping timeout: 248 seconds]
ShalokShalom_ has joined #ponylang
ShalokShalom has quit [Ping timeout: 240 seconds]
oraoto has joined #ponylang
oraoto has quit [Ping timeout: 240 seconds]
dipin has quit [Quit: dipin]
oraoto has joined #ponylang
codec1 has joined #ponylang
mikeyhew has quit [Quit: Connection closed for inactivity]
samuell has joined #ponylang
gokr has joined #ponylang
<SeanTAllen>
Yes @codec_ you can build debug version on any platform
gokr has quit [Ping timeout: 240 seconds]
oraoto has quit [Ping timeout: 260 seconds]
oraoto has joined #ponylang
oraoto has quit [Ping timeout: 248 seconds]
oraoro has joined #ponylang
user10032 has joined #ponylang
user10032 has quit [Quit: Leaving]
<codec1>
Hey Sean I have a question for you
<codec1>
I have managed to embed the source code when building the documentation (without manual hacks) and I am pretty happy with the result
<codec1>
The issue is that when I upload the site straight out of the mkdocs build and upload to github pages
<codec1>
some pages return a 404 because it seems github doesn´t like pages with dot and other unusual characters in file name/paths
<codec1>
So do you know something else I could use that would work better to show my generated doc?
<SeanTAllen>
are you uploading the .md or .html codec1? i'd suggest generating html and uploading that, i dont think it has anything about it that isnt "github pages unfriendly". uploading the html to GH pages is what we did for a long time.
<codec1>
I am indeed uploading the html pages
<codec1>
and the weird thing is that it works great with a local web server
<codec1>
it seems that all the pages in my main packages which name is ´.´ have issues on github
<SeanTAllen>
¯\_(ツ)_/¯
<SeanTAllen>
not sure what that is about
<SeanTAllen>
probably not anyhting to worry about for showing this off
<SeanTAllen>
so feedback
<SeanTAllen>
when i click [src]
<SeanTAllen>
it takes me to the source in general
<SeanTAllen>
not to a specific pint
<codec1>
it should
<SeanTAllen>
o wait
<SeanTAllen>
i had javascript off
<codec1>
:)
<SeanTAllen>
how are you generating the docs? seems like the . isn't an issue for right now for stdlib docs but is something we'd want to address. i know Mathias had several things he wanted to work on with the documentation.
<codec1>
just with ponyc -o ./out --docs-public
<codec1>
then I do mkdocs build on the generated mk files
<SeanTAllen>
so
<SeanTAllen>
when stdlib is generated ponyc isn't run from the stdlib directory
<SeanTAllen>
its run from the directory above
<SeanTAllen>
that might be why it happens
<SeanTAllen>
which would be... interesting
<SeanTAllen>
check out the command on .travis.yml and try doing for yours
<SeanTAllen>
that will probably address the "." issues