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
ur5us has joined #crystal-lang
Sankalp has quit [Ping timeout: 246 seconds]
ur5us has quit [Ping timeout: 248 seconds]
Sankalp has joined #crystal-lang
hightower2 has joined #crystal-lang
walez__ has joined #crystal-lang
_ht has joined #crystal-lang
walez__ has quit [Quit: Leaving]
walez__ has joined #crystal-lang
walez___ has joined #crystal-lang
walez__ has quit [Ping timeout: 265 seconds]
sagax has joined #crystal-lang
<sagax> hi all
<sagax> how to compile crystal from source for x32 ?
<sagax> i trying and got errors >> Error: no overload matches 'GC::Stats.new', heap_size: UInt32, free_bytes: UInt32, unmapped_bytes: UInt32, bytes_since_gc: UInt32, total_bytes: UInt32 Overloads are: GC::Stats.new(heap_size : UInt64, free_bytes : UInt64, unmapped_bytes : UInt64, bytes_since_gc : UInt64, total_bytes : UInt64)
<sagax> it's possible compile last crystal from source to x32?
<FromGitter> <Blacksmoke16> Probably a bug, `i386-linux-gnu` is a tier 2 platform, so is no CI for it
<FromGitter> <Blacksmoke16> Assuming x32 you mean 32bit Linux yea?
<sagax> ys
<sagax> yes 32bit
<sagax> x32=i386, i mean it
dannyAAM has quit [Read error: Connection reset by peer]
<FromGitter> <Blacksmoke16> id prob file an issue for it
<FromGitter> <Blacksmoke16> or better yet a PR if possible
dannyAAM has joined #crystal-lang
<sagax> how to do it?
<sagax> last i386 release 1.1.1
<sagax> ok,
<FromGitter> <Blacksmoke16> and because its now a tier 2 there is no CI for it so is possible for things to break, and given not a lot of people are using 32 bit these days, may take a while to notice
<sagax> that mean, that bugreport not matter?
<sagax> this mean*
<sagax> about problems with compile crystal 1.6.0 for i386
<FromGitter> <Blacksmoke16> it's not an unsupported platform, just no automated CI tests and no pre-built binary. So still think it would be worth filing a bug
<FromGitter> <Blacksmoke16> if i had to guess it's a regression from https://github.com/crystal-lang/crystal/pull/11963
<FromGitter> <Blacksmoke16> went from correct `UInt32` type to always `UInt64`
<sagax> ok
jmdaemon has quit [Ping timeout: 248 seconds]
walez___ has quit [Quit: Leaving]
walez__ has joined #crystal-lang
luna has joined #crystal-lang
luna has left #crystal-lang [#crystal-lang]
luna has joined #crystal-lang
ua_ has quit [Ping timeout: 252 seconds]
<FromGitter> <jgarte:matrix.org> With guix!
ua_ has joined #crystal-lang
luna has left #crystal-lang [#crystal-lang]
walez___ has joined #crystal-lang
walez__ has quit [Ping timeout: 248 seconds]
yxhuvud has quit [Read error: Connection reset by peer]
yxhuvud has joined #crystal-lang
<FromGitter> <rjnienaber> what's the naming convention for enum values for multiple words? Is it PascalCase ?
_ht has quit [Quit: _ht]
<FromGitter> <rjnienaber> ```enum BalloonType ⏎ RedBalloon ⏎ GreenBalloon ⏎ end``` [https://gitter.im/crystal-lang/crystal?at=63432963cb3b2435280a4dfc]
<FromGitter> <rjnienaber> from the coding style doc (https://crystal-lang.org/reference/1.5/conventions/coding_style.html) it would appear so
ur5us has joined #crystal-lang
walez___ has quit [Ping timeout: 265 seconds]
<FromGitter> <oprypin:matrix.org> @rjnienaber: yes i think that's the good one but there's still some cases of SCREAMING_CASE
hightower3 has joined #crystal-lang
hightower2 has quit [Ping timeout: 252 seconds]
<FromGitter> <dscottboggs:matrix.org> what's the best way to convert `Array(Char)` to `String`?
jmdaemon has joined #crystal-lang
<FromGitter> <Blacksmoke16> Probably just call .join on it