ChanServ changed the topic of #crystal-lang to: The Crystal programming language | https://crystal-lang.org | Fund Crystal's development: https://crystal-lang.org/sponsors | GH: https://github.com/crystal-lang/crystal | Docs: https://crystal-lang.org/docs | Gitter: https://gitter.im/crystal-lang/crystal
Sankalp- has joined #crystal-lang
Sankalp has quit [Ping timeout: 272 seconds]
Sankalp- is now known as Sankalp
ur5us has quit [Ping timeout: 260 seconds]
jhass has quit [Ping timeout: 252 seconds]
straight-shoota has quit [Ping timeout: 272 seconds]
straight-shoota has joined #crystal-lang
jhass has joined #crystal-lang
jmiven has quit [Quit: reboot]
_ht has joined #crystal-lang
Sankalp has quit [Ping timeout: 252 seconds]
Sankalp has joined #crystal-lang
jmdaemon has quit [Ping timeout: 272 seconds]
<FromGitter> <dscottboggs:matrix.org> is static compilation still broken?
<FromGitter> <oprypin:matrix.org> Scott (https://matrix.to/#/@dscottboggs:matrix.org): no change to it
<FromGitter> <dscottboggs:matrix.org> 😞 thanks
<FromGitter> <Blacksmoke16> whats broken about it tho?
<FromGitter> <moe:busyloop.net> there was a ticket (don't have the url handy), iirc it's broken on the official docker images. ⏎ but works fine with the 84codes images, guess that's why there's no big urge to fix it
<FromGitter> <Blacksmoke16> you mean https://github.com/crystal-lang/crystal/issues/11703 ?
<FromGitter> <moe:busyloop.net> yap, exactly that one
jmdaemon has joined #crystal-lang
jmdaemon has quit [Ping timeout: 260 seconds]
jmdaemon has joined #crystal-lang
jmdaemon has quit [Ping timeout: 268 seconds]
Sankalp has quit [Ping timeout: 268 seconds]
Sankalp- has joined #crystal-lang
Sankalp- is now known as Sankalp
Sankalp- has joined #crystal-lang
Sankalp has quit [Ping timeout: 256 seconds]
Sankalp- is now known as Sankalp
fifr_ has quit [Quit: ZNC 1.8.2 - https://znc.in]
fifr_ has joined #crystal-lang
Sankalp has quit [Ping timeout: 256 seconds]
Sankalp has joined #crystal-lang
Sankalp- has joined #crystal-lang
Sankalp has quit [Ping timeout: 265 seconds]
Sankalp- is now known as Sankalp
Sankalp has quit [Ping timeout: 252 seconds]
Sankalp has joined #crystal-lang
taupiqueur has quit [Ping timeout: 252 seconds]
taupiqueur has joined #crystal-lang
ur5us has joined #crystal-lang
taupiqueur has quit [Ping timeout: 264 seconds]
taupiqueur has joined #crystal-lang
ur5us has quit [Ping timeout: 255 seconds]
ur5us has joined #crystal-lang
ur5us has quit [Ping timeout: 255 seconds]
* FromGitter * ober does full static with docker+alpine image fine
<FromGitter> <Blacksmoke16> key point is it seems specific to M1 apple macs
_ht has quit [Remote host closed the connection]
jmdaemon has joined #crystal-lang
<FromGitter> <azurelmao> Can I turn an array to a static array?
<FromGitter> <Blacksmoke16> for what purpose?
<FromGitter> <azurelmao> I had previously been usign a static array for vertices of a 3d cube
<FromGitter> <azurelmao> but now i wanted to scale it and use a normal array
<FromGitter> <azurelmao> but it doesn't seem compatible with what opengl wants
<FromGitter> <azurelmao> it just sees it as a pointer
<FromGitter> <Blacksmoke16> clibs usually want static arrays yea
<FromGitter> <Blacksmoke16> does the pointer not work?
<FromGitter> <Blacksmoke16> guess it depends on the specific C function you're using
<FromGitter> <azurelmao> okay i figured it out
<FromGitter> <azurelmao> I was doing `sizeof(typeof(mything))` when i had my static array before
<FromGitter> <azurelmao> so it reported the correct size
<FromGitter> <azurelmao> but now it was outputting 8 bytes
<FromGitter> <azurelmao> changed it to use `.size` now
<FromGitter> <Blacksmoke16> as the 2nd generic to static array?
<FromGitter> <Blacksmoke16> yea the former means something diff than how many items are in the array