Home freenode/#haskell: Logs Calendar

Logs: freenode/#haskell

←Prev  Next→ 502,152 events total
2021-05-18 11:13:55 merijn joins (~merijn@83-160-49-249.ip.xs4all.nl)
2021-05-18 11:14:35 × Guest33594 quits (~alexander@2a02:587:dc03:1500:b16c:5166:feb8:97d5) (Ping timeout: 260 seconds)
2021-05-18 11:14:54 × rond_ quits (5940206b@89-64-32-107.dynamic.chello.pl) (Quit: Connection closed)
2021-05-18 11:14:55 Qwerky joins (~qwerky@178.197.228.14)
2021-05-18 11:18:10 Pickchea joins (~private@unaffiliated/pickchea)
2021-05-18 11:19:21 × merijn quits (~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 260 seconds)
2021-05-18 11:19:34 merijn joins (~merijn@83-160-49-249.ip.xs4all.nl)
2021-05-18 11:23:08 stree joins (~stree@68.36.8.116)
2021-05-18 11:24:11 × nut quits (~nut@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr) (Ping timeout: 240 seconds)
2021-05-18 11:25:00 × merijn quits (~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 268 seconds)
2021-05-18 11:25:22 merijn joins (~merijn@83-160-49-249.ip.xs4all.nl)
2021-05-18 11:25:24 heatsink joins (~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net)
2021-05-18 11:25:51 <maerwald> is there a way to tell cabal or ghc to make module compilation order more predictable?
2021-05-18 11:26:14 machinedgod joins (~machinedg@135-23-192-217.cpe.pppoe.ca)
2021-05-18 11:26:16 <maerwald> It's quite annoying when you're fixing a file, recompile and it tries building some other file first
2021-05-18 11:27:03 Kaivo parts (~Kaivo@172-97-54-87.mc.derytele.com) ("WeeChat 3.0.1")
2021-05-18 11:28:12 ddellacosta joins (ddellacost@gateway/vpn/mullvad/ddellacosta)
2021-05-18 11:28:47 qwerty2o joins (~qwerty2o@46.19.86.170)
2021-05-18 11:28:51 × plutoniix quits (~q@ppp-58-8-176-34.revip2.asianet.co.th) (Quit: Leaving)
2021-05-18 11:29:23 mastarija joins (~mastarija@31.217.0.94)
2021-05-18 11:29:41 × heatsink quits (~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 240 seconds)
2021-05-18 11:30:26 × merijn quits (~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 252 seconds)
2021-05-18 11:31:17 merijn joins (~merijn@83-160-49-249.ip.xs4all.nl)
2021-05-18 11:32:49 × ddellacosta quits (ddellacost@gateway/vpn/mullvad/ddellacosta) (Ping timeout: 260 seconds)
2021-05-18 11:32:57 × qwerty2o quits (~qwerty2o@46.19.86.170) (Read error: Connection reset by peer)
2021-05-18 11:33:53 Stanley00 joins (~stanley00@unaffiliated/stanley00)
2021-05-18 11:33:59 <__monty__> Maybe restricting the number of cores helps?
2021-05-18 11:35:31 × Qwerky quits (~qwerky@178.197.228.14) (Remote host closed the connection)
2021-05-18 11:39:39 × Stanley00 quits (~stanley00@unaffiliated/stanley00) (Remote host closed the connection)
2021-05-18 11:40:15 Stanley00 joins (~stanley00@unaffiliated/stanley00)
2021-05-18 11:41:02 Qwerky joins (~qwerky@178.197.228.14)
2021-05-18 11:41:59 × tefter quits (bmaxa@gateway/vpn/protonvpn/tefter) (Ping timeout: 246 seconds)
2021-05-18 11:42:31 × knupfer quits (~Thunderbi@200116b822d01a00f69634fffef0b45f.dip.versatel-1u1.de) (Ping timeout: 250 seconds)
2021-05-18 11:43:11 × xenon- quits (~bc817c21@217.29.117.252) (Quit: http://www.okay.uz/ (Ping timeout))
2021-05-18 11:43:26 × xsperry quits (~as@unaffiliated/xsperry) (Remote host closed the connection)
2021-05-18 11:44:07 xsperry joins (~as@unaffiliated/xsperry)
2021-05-18 11:44:27 knupfer joins (~Thunderbi@200116b822d01a00f69634fffef0b45f.dip.versatel-1u1.de)
2021-05-18 11:44:50 × Stanley00 quits (~stanley00@unaffiliated/stanley00) (Ping timeout: 265 seconds)
2021-05-18 11:44:52 tefter joins (bmaxa@gateway/vpn/protonvpn/tefter)
2021-05-18 11:50:23 <tomsmeding> I had this exact problem a while ago; it's nondeterminism within one package, not across packages
2021-05-18 11:50:31 <tomsmeding> maerwald: it's ghc, not cabal that does this
2021-05-18 11:50:53 <tomsmeding> when I asked about it a while ago, I got the impression it's kind of unknown :p
2021-05-18 11:51:03 <maerwald> it feels like ghc is trolling me
2021-05-18 11:51:35 <maerwald> "haha, this file doesn't compile either btw..."
2021-05-18 11:51:36 <opqdonut> ISTR some tool like ghcid trying to fix this with some workaround years ago
2021-05-18 11:52:08 <tomsmeding> what you _can_ do is extract the ghc invocation that ghc is actually running, and run that manually, but passing it only one module name instead of the full list of modules in the package
2021-05-18 11:52:14 <tomsmeding> but that's labour-intensive :p
2021-05-18 11:52:46 <nshepperd2> there's nothing like a --keep-going flag to tell it to just build everything it can and return all errors?
2021-05-18 11:53:14 raehik joins (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net)
2021-05-18 11:57:13 × jao quits (~jao@pdpc/supporter/professional/jao) (Remote host closed the connection)
2021-05-18 12:02:03 × pavonia quits (~user@unaffiliated/siracusa) (Quit: Bye!)
2021-05-18 12:02:32 jao joins (~jao@pdpc/supporter/professional/jao)
2021-05-18 12:02:45 urodna joins (~urodna@unaffiliated/urodna)
2021-05-18 12:03:37 × hyiltiz quits (~quassel@unaffiliated/hyiltiz) (Ping timeout: 260 seconds)
2021-05-18 12:03:54 nineonine joins (~nineonine@2604:3d08:777e:900:e4fe:87c8:c43b:fc90)
2021-05-18 12:06:10 argento joins (~argent0@168.227.96.26)
2021-05-18 12:07:00 sedeki joins (~textual@unaffiliated/sedeki)
2021-05-18 12:07:49 malumore_ joins (~malumore@151.62.114.250)
2021-05-18 12:08:00 ddellacosta joins (ddellacost@gateway/vpn/mullvad/ddellacosta)
2021-05-18 12:08:05 × nineonine quits (~nineonine@2604:3d08:777e:900:e4fe:87c8:c43b:fc90) (Ping timeout: 250 seconds)
2021-05-18 12:08:46 × boxscape quits (4ff0bb95@p4ff0bb95.dip0.t-ipconnect.de) (Quit: Connection closed)
2021-05-18 12:10:41 × malumore quits (~malumore@151.62.114.250) (Ping timeout: 260 seconds)
2021-05-18 12:13:01 × ddellacosta quits (ddellacost@gateway/vpn/mullvad/ddellacosta) (Ping timeout: 260 seconds)
2021-05-18 12:13:21 × star_cloud quits (~star_clou@ec2-34-220-44-120.us-west-2.compute.amazonaws.com) (Ping timeout: 265 seconds)
2021-05-18 12:13:50 × Aquazi quits (uid312403@gateway/web/irccloud.com/x-kbmvyhgqqnssuyqy) (Quit: Connection closed for inactivity)
2021-05-18 12:14:04 hyiltiz joins (~quassel@31.220.5.250)
2021-05-18 12:14:04 × hyiltiz quits (~quassel@31.220.5.250) (Changing host)
2021-05-18 12:14:04 hyiltiz joins (~quassel@unaffiliated/hyiltiz)
2021-05-18 12:14:22 boxscape joins (4ff0bb95@p4ff0bb95.dip0.t-ipconnect.de)
2021-05-18 12:17:28 <tomsmeding> isn't that -fdefer-type-errors
2021-05-18 12:17:31 <tomsmeding> to ghc
2021-05-18 12:19:30 <boxscape> yes, but only as long as the errors that prevent the build from continuing are type errors
2021-05-18 12:19:45 <boxscape> (or... identifier not in scope, or such things)
2021-05-18 12:19:45 <nshepperd2> no, that's to build everything it can and return no errors :p
2021-05-18 12:19:56 ghuntley joins (uid16877@gateway/web/irccloud.com/x-urbcmuxsmripaewo)
2021-05-18 12:21:51 a6a45081-2b83 joins (~aditya@122.163.149.247)
2021-05-18 12:22:08 <a6a45081-2b83> is there any support for QQ in vscode or similar?
2021-05-18 12:24:40 frozenErebus joins (~frozenEre@94.129.65.28)
2021-05-18 12:24:57 × raehik quits (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 265 seconds)
2021-05-18 12:26:20 × ukari quits (~ukari@unaffiliated/ukari) (Remote host closed the connection)
2021-05-18 12:27:33 ukari joins (~ukari@unaffiliated/ukari)
2021-05-18 12:28:24 sm2n_ joins (~sm2n@bras-base-hmtnon143hw-grc-10-65-95-102-68.dsl.bell.ca)
2021-05-18 12:28:26 × sm2n quits (~sm2n@bras-base-hmtnon143hw-grc-10-65-95-102-68.dsl.bell.ca) (Read error: Connection reset by peer)
2021-05-18 12:29:51 × sm2n_ quits (~sm2n@bras-base-hmtnon143hw-grc-10-65-95-102-68.dsl.bell.ca) (Read error: Connection reset by peer)
2021-05-18 12:30:06 sm2n_ joins (~sm2n@bras-base-hmtnon143hw-grc-10-65-95-102-68.dsl.bell.ca)
2021-05-18 12:30:24 × a6a45081-2b83 quits (~aditya@122.163.149.247) (Remote host closed the connection)
2021-05-18 12:30:31 nicholasbulka joins (~nicholasb@2601:900:4301:da0:189f:ecee:d0e0:93ba)
2021-05-18 12:31:37 × sm2n_ quits (~sm2n@bras-base-hmtnon143hw-grc-10-65-95-102-68.dsl.bell.ca) (Read error: Connection reset by peer)
2021-05-18 12:31:50 sm2n_ joins (~sm2n@bras-base-hmtnon143hw-grc-10-65-95-102-68.dsl.bell.ca)
2021-05-18 12:33:37 drbean_ joins (~drbean@TC210-63-209-89.static.apol.com.tw)
2021-05-18 12:34:34 × nicholasbulka quits (~nicholasb@2601:900:4301:da0:189f:ecee:d0e0:93ba) (Ping timeout: 245 seconds)
2021-05-18 12:39:03 × pjb quits (~pjb@2a01cb04063ec5009477333dc83d90e4.ipv6.abo.wanadoo.fr) (Quit: rebooting macOS for update…)
2021-05-18 12:39:34 raehik joins (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net)
2021-05-18 12:41:30 sm2n joins (~sm2n@bras-base-hmtnon143hw-grc-10-65-95-102-68.dsl.bell.ca)
2021-05-18 12:41:58 × sm2n_ quits (~sm2n@bras-base-hmtnon143hw-grc-10-65-95-102-68.dsl.bell.ca) (Ping timeout: 252 seconds)
2021-05-18 12:42:11 × ystael quits (~ystael@130.44.151.113) (Ping timeout: 246 seconds)
2021-05-18 12:44:35 ystael joins (~ystael@130.44.151.113)
2021-05-18 12:44:38 Tario joins (~Tario@201.192.165.173)
2021-05-18 12:45:15 ddellacosta joins (ddellacost@gateway/vpn/mullvad/ddellacosta)
2021-05-18 12:46:01 ep1ctetus joins (~epictetus@ip72-194-54-201.sb.sd.cox.net)

All times are in UTC.