00:29
Sankalp- has joined #crystal-lang
00:30
Sankalp has quit [Ping timeout: 272 seconds]
00:30
Sankalp- is now known as Sankalp
03:07
ur5us has quit [Ping timeout: 260 seconds]
03:48
jhass has quit [Ping timeout: 252 seconds]
03:49
straight-shoota has quit [Ping timeout: 272 seconds]
03:50
straight-shoota has joined #crystal-lang
03:51
jhass has joined #crystal-lang
08:45
jmiven has quit [Quit: reboot]
09:18
_ht has joined #crystal-lang
10:46
Sankalp has quit [Ping timeout: 252 seconds]
10:47
Sankalp has joined #crystal-lang
10:55
jmdaemon has quit [Ping timeout: 272 seconds]
13:09
<
FromGitter >
<dscottboggs:matrix.org> is static compilation still broken?
13:52
<
FromGitter >
<dscottboggs:matrix.org> 😞 thanks
13:52
<
FromGitter >
<Blacksmoke16> whats broken about it tho?
14:31
<
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
14:45
<
FromGitter >
<moe:busyloop.net> yap, exactly that one
16:02
jmdaemon has joined #crystal-lang
16:15
jmdaemon has quit [Ping timeout: 260 seconds]
16:25
jmdaemon has joined #crystal-lang
16:59
jmdaemon has quit [Ping timeout: 268 seconds]
17:09
Sankalp has quit [Ping timeout: 268 seconds]
17:09
Sankalp- has joined #crystal-lang
17:09
Sankalp- is now known as Sankalp
17:19
Sankalp- has joined #crystal-lang
17:20
Sankalp has quit [Ping timeout: 256 seconds]
17:20
Sankalp- is now known as Sankalp
17:20
fifr_ has joined #crystal-lang
17:51
Sankalp has quit [Ping timeout: 256 seconds]
17:52
Sankalp has joined #crystal-lang
17:56
Sankalp- has joined #crystal-lang
17:56
Sankalp has quit [Ping timeout: 265 seconds]
17:57
Sankalp- is now known as Sankalp
18:25
Sankalp has quit [Ping timeout: 252 seconds]
18:26
Sankalp has joined #crystal-lang
19:45
taupiqueur has quit [Ping timeout: 252 seconds]
19:47
taupiqueur has joined #crystal-lang
19:52
ur5us has joined #crystal-lang
19:53
taupiqueur has quit [Ping timeout: 264 seconds]
19:54
taupiqueur has joined #crystal-lang
20:26
ur5us has quit [Ping timeout: 255 seconds]
20:28
ur5us has joined #crystal-lang
20:52
ur5us has quit [Ping timeout: 255 seconds]
21:11
* FromGitter
* ober does full static with docker+alpine image fine
21:12
<
FromGitter >
<Blacksmoke16> key point is it seems specific to M1 apple macs
21:16
_ht has quit [Remote host closed the connection]
22:21
jmdaemon has joined #crystal-lang
23:43
<
FromGitter >
<azurelmao> Can I turn an array to a static array?
23:45
<
FromGitter >
<Blacksmoke16> for what purpose?
23:46
<
FromGitter >
<azurelmao> I had previously been usign a static array for vertices of a 3d cube
23:46
<
FromGitter >
<azurelmao> but now i wanted to scale it and use a normal array
23:46
<
FromGitter >
<azurelmao> but it doesn't seem compatible with what opengl wants
23:47
<
FromGitter >
<azurelmao> it just sees it as a pointer
23:47
<
FromGitter >
<Blacksmoke16> clibs usually want static arrays yea
23:47
<
FromGitter >
<Blacksmoke16> does the pointer not work?
23:47
<
FromGitter >
<Blacksmoke16> guess it depends on the specific C function you're using
23:53
<
FromGitter >
<azurelmao> okay i figured it out
23:53
<
FromGitter >
<azurelmao> I was doing `sizeof(typeof(mything))` when i had my static array before
23:53
<
FromGitter >
<azurelmao> so it reported the correct size
23:53
<
FromGitter >
<azurelmao> but now it was outputting 8 bytes
23:54
<
FromGitter >
<azurelmao> changed it to use `.size` now
23:54
<
FromGitter >
<Blacksmoke16> as the 2nd generic to static array?
23:54
<
FromGitter >
<Blacksmoke16> yea the former means something diff than how many items are in the array