<< 03-06-2026 >>

01:05:29*Skippy8 joined #nim
02:05:31*rockcavera quit (Remote host closed the connection)
02:36:43*LuckyMan joined #nim
02:36:58LuckyManhi
02:42:25*LuckyMan quit (Quit: Konversation terminated!)
02:42:41*LuckyMan joined #nim
03:12:16*kick455 joined #nim
03:14:43*hygo quit (Ping timeout: 276 seconds)
03:15:06*Skippy8 quit (Ping timeout: 252 seconds)
03:15:26*oculux quit (Ping timeout: 265 seconds)
03:16:00*hygo joined #nim
04:27:34*LuckyMan quit (Quit: Konversation terminated!)
04:39:24*th3r00t quit (Quit: ZNC 1.10.1 - https://znc.in)
05:16:44*th3r00t joined #nim
05:21:38*th3r00t quit (Quit: ZNC 1.10.1 - https://znc.in)
05:26:39*benson joined #nim
05:35:46*emery quit (Read error: Connection reset by peer)
05:40:09*emery joined #nim
06:36:46*Skippy8 joined #nim
07:03:16FromDiscord<tempestro> @raynei486 you making some game?
08:29:33*hygo quit (Quit: WeeChat 4.7.1)
08:30:39*hygo joined #nim
08:41:18tarzeauif there is nim developers here, can you advise on this: https://buildd.debian.org/status/package.php?p=nim&suite=sid
08:41:43tarzeaua) unknown CPU architecture: alpha See makefile.nimf. Stop.
08:42:03tarzeaub) > makefile:75: *** unknown operating system: gnu. Stop.
08:42:14tarzeau^ could support be added for these?
08:43:30Amun-Ramoin tarzeau
08:43:35Amun-Rais that a cross compilation?
08:46:30*Amun-Ra is peeking at build logs
09:02:36FromDiscord<demotomohiro> tarzeau↵It looks the error come from https://github.com/nim-lang/csources_v3↵It is generated with https://github.com/nim-lang/Nim/tree/devel/tools/niminst↵Probably need to add alpha CPU code here: https://github.com/nim-lang/Nim/blob/devel/tools/niminst/makefile.nimf
09:03:41FromDiscord<demotomohiro> But I don't know if there are people who tested Nim with alpha CPU.
09:08:35FromDiscord<demotomohiro> If you have alpha CPU and want to cross compile on other machine, see https://nim-lang.org/docs/nimc.html#crossminuscompilation↵You need to install gcc or clang that can cross compile to alpha CPU.
09:14:41tarzeauAmun-Ra: no it's natively building
09:15:25Amun-Ratarzeau: mhm
09:16:23Amun-RaI cross compiled to m68k many times; never did a native build tho; I'll take a peek at makefile.nimf in free time
09:16:24tarzeaumaybe alpha, m68k, sh4, x32 can be ignored. but if it'd build on hurd it'd be nice, so they get a great browser (chawan)
09:17:11tarzeauAmun-Ra: thanks. jfyi: https://popcon.debian.org/ scroll down to Statistics per Debian architectures
09:17:35tarzeau3 alpha, 6 m68k, 1 sh4, 2 x32...
09:17:52Amun-Rathanks
09:17:54tarzeaupoor compared to https://stats.asahilinux.org/
09:20:25Amun-Ratbh I did a cross compilation for AmigaOS m68k, never for Linux m68k
09:35:49*emery quit (Read error: Connection reset by peer)
09:40:21*emery joined #nim
09:46:03FromDiscord<mratsim> In reply to @raynei486 "A proc returning `seq[Move]`": Don't return a seq or preallocate it and keep the buffer around across multiple moves.
09:46:34FromDiscord<mratsim> Though why return multiple moves?
09:47:27FromDiscord<mratsim> In reply to @raynei486 "A proc returning `seq[Move]`": I got a 1000x acceleration here by not returning a sequence of 2 items: https://github.com/mratsim/tattletale/commit/5184fe48a49ff2a3bc5b599f5df9a934061a4c28#diff-c27da59655eabc7b66eedd302e91812cc79f941eb07b5a2a83e3cd76826e6039R145-R230
09:48:44FromDiscord<mratsim> https://media.discordapp.net/attachments/371759389889003532/1511667947641503785/image.png?ex=6a2149fc&is=6a1ff87c&hm=f7ba5d4731590f3f69e47d7b83e3b957722328af3113def688ce2e0732061942&
09:49:04FromDiscord<mratsim> (edit) "sequence of 2 items:" => "sequence, but mutating in-place, and removing a closure allocation:"
10:16:04FromDiscord<crochubourbier> sent a code paste, see https://play.nim-lang.org/#pasty=nTKxhuDv
10:16:40FromDiscord<crochubourbier> (edit) "https://play.nim-lang.org/#pasty=mcBdMKTW" => "https://play.nim-lang.org/#pasty=qhLMXLqG"
10:16:55FromDiscord<crochubourbier> oh shit I think I got it, it's a global that's why
10:39:41FromDiscord<crochubourbier> sent a code paste, see https://play.nim-lang.org/#pasty=ZtOXIQIA
11:20:07*acidsys quit (Ping timeout: 272 seconds)
11:20:25FromDiscord<margaretthorntone116> https://media.discordapp.net/attachments/371759389889003532/1511691017882173460/image.jpg?ex=6a215f78&is=6a200df8&hm=462fc4f99ea16d6a8ec2a5e52ca1b4a734fad8036aeabec4da4420bab2225dc7& https://media.discordapp.net/attachments/371759389889003532/1511691018255335554/image.jpg?ex=6a215f78&is=6a200df8&hm=c1052f7198a17d463b14d2cb71e8af2242f3f2ba1389d9c9d48b9eb5cb9eb699&
11:40:55*acidsys joined #nim
13:00:00*emery quit (Read error: Connection reset by peer)
13:04:32*emery joined #nim
14:19:31*Skippy8 quit (Ping timeout: 264 seconds)
14:20:41*Skippy8 joined #nim
14:21:04*hygo quit (Quit: WeeChat 4.7.1)
15:06:48*emery quit (Read error: Connection reset by peer)
15:07:07*emery joined #nim
15:27:47FromDiscord<mratsim> In reply to @crochubourbier "Hello, I'm struggling with": the path needs to depend on an proc input
15:28:28FromDiscord<mratsim> ah, interesting the manual says thread-local var
15:28:48FromDiscord<mratsim> maybe open an issue, you're treading untrodden paths
17:22:52*Skippy8 quit (Read error: Connection reset by peer)
17:23:07*Skippy8 joined #nim
17:37:45*benson quit (Quit: Konversation terminated!)
17:41:25*emery quit (Read error: Connection reset by peer)
17:41:52*emery joined #nim
17:54:10*emery quit (Read error: Connection reset by peer)
17:54:23*emery joined #nim
18:02:08FromDiscord<crochubourbier> Yeah, it's either global let / const, thread-local let / var or proc input, so I didn't do anything wrong then ? I'll file an issue then
18:02:14FromDiscord<crochubourbier> (edit) "wrong then ?" => "wrong?"
18:35:35*jj quit (Ping timeout: 245 seconds)
19:44:18FromDiscord<co6563> In reply to @crochubourbier "Yeah, it's either global": Do you need a developer?
19:45:10FromDiscord<crochubourbier> In reply to @co6563 "Do you need a": Not really, just wanted to understand the issue I had