2016-08-02T01:32:24Z em1l joined #sbcl 2016-08-02T01:35:49Z em1l_ quit (Ping timeout: 250 seconds) 2016-08-02T01:38:50Z ehaliewicz quit (Ping timeout: 250 seconds) 2016-08-02T01:43:58Z karswell` is now known as karswell 2016-08-02T02:28:40Z sjl quit (Read error: Connection reset by peer) 2016-08-02T03:56:42Z oleo_ joined #sbcl 2016-08-02T04:00:39Z oleo quit (Ping timeout: 276 seconds) 2016-08-02T04:07:58Z les quit (Quit: "") 2016-08-02T04:09:29Z les joined #sbcl 2016-08-02T04:15:07Z loke quit (Ping timeout: 252 seconds) 2016-08-02T04:28:23Z loke joined #sbcl 2016-08-02T04:33:59Z rszeno joined #sbcl 2016-08-02T04:41:00Z les quit (Quit: "") 2016-08-02T04:41:15Z les joined #sbcl 2016-08-02T04:49:26Z rszeno quit (Quit: Leaving.) 2016-08-02T04:54:07Z edgar-rft quit (Quit: edgar-rft) 2016-08-02T05:05:34Z oleo_ quit (Quit: Leaving) 2016-08-02T05:28:13Z joshe quit (Ping timeout: 258 seconds) 2016-08-02T05:28:30Z joshe joined #sbcl 2016-08-02T06:12:22Z gingerale joined #sbcl 2016-08-02T06:38:08Z shka_ joined #sbcl 2016-08-02T06:43:06Z angavrilov joined #sbcl 2016-08-02T06:43:57Z SamSkulls quit (Remote host closed the connection) 2016-08-02T07:00:09Z shka_ quit (Ping timeout: 260 seconds) 2016-08-02T07:09:28Z edgar-rft joined #sbcl 2016-08-02T07:25:40Z loke quit (Ping timeout: 264 seconds) 2016-08-02T07:29:26Z gargaml joined #sbcl 2016-08-02T07:38:02Z loke joined #sbcl 2016-08-02T07:51:20Z gargaml quit (Quit: WeeChat 1.5) 2016-08-02T07:53:23Z loke quit (Ping timeout: 265 seconds) 2016-08-02T07:54:24Z edgar-rft quit (Remote host closed the connection) 2016-08-02T08:05:50Z loke joined #sbcl 2016-08-02T08:15:45Z gargaml joined #sbcl 2016-08-02T08:17:31Z nzambe quit (Ping timeout: 250 seconds) 2016-08-02T08:17:49Z cromachina quit (Read error: Connection reset by peer) 2016-08-02T08:18:33Z cromachina joined #sbcl 2016-08-02T08:18:33Z barbone quit (Ping timeout: 240 seconds) 2016-08-02T08:18:45Z stassats joined #sbcl 2016-08-02T08:19:04Z jibanes quit (Ping timeout: 264 seconds) 2016-08-02T08:21:09Z jibanes_ joined #sbcl 2016-08-02T08:21:09Z loke quit (Ping timeout: 250 seconds) 2016-08-02T08:21:48Z barbone joined #sbcl 2016-08-02T08:31:47Z loke joined #sbcl 2016-08-02T08:47:04Z gargaml quit (Quit: WeeChat 1.5) 2016-08-02T08:47:38Z gargaml joined #sbcl 2016-08-02T08:49:06Z Bike quit (Quit: wings) 2016-08-02T09:14:15Z foom quit (Ping timeout: 250 seconds) 2016-08-02T09:26:23Z foom joined #sbcl 2016-08-02T09:30:31Z stassats: trying to abbreviate strings in backtraces, can't decide on the best output 2016-08-02T09:30:38Z stassats: "abc..." isn't really great 2016-08-02T09:30:50Z stassats: (car "abc"...) is better, but may be confusing 2016-08-02T09:34:26Z stassats: ok, i'll settle on "abc"..., but make it cut off only large strings 2016-08-02T09:35:01Z flip214: "abc"+40 if 40 chars got removed? would at least leave data about original length 2016-08-02T09:35:27Z stassats: flip214: nice idea, but that doesn't happen with #(a b c) or '(a b c) 2016-08-02T09:36:08Z stassats: and "abc"+40 is readable 2016-08-02T09:40:34Z stassats: flip214: and this is just to stop the backtrace from going nuts on large strings, don't have to be extra nice, that's a job for a graphical debugger 2016-08-02T09:41:30Z stassats: i'll settle on (* *print-length* 100) for now 2016-08-02T09:45:05Z stassats: with the default *print-length* being 12, that's 1200, few strings you want to look at are that long 2016-08-02T09:47:40Z stassats: could be # 2016-08-02T09:47:48Z flip214: too long ;) 2016-08-02T09:48:16Z flip214: if you want it unreadable, «» would fit the bill ;) 2016-08-02T09:48:25Z flip214: or <+40> 2016-08-02T09:48:37Z stassats: flip214: some joker can have a reader macro for « 2016-08-02T09:48:37Z flip214: though that's not aesthetic 2016-08-02T09:48:46Z flip214: yeah, everything is possible. 2016-08-02T09:49:09Z stassats: well, you can't have it with dots, or with #<, those are explicitly unreadable 2016-08-02T09:49:26Z stassats: so, the backtrace for (car (make-string 10000 :initial-element #\a)) is now beter 2016-08-02T09:49:37Z flip214: you could also have )"abc"+40( (OUCH) 2016-08-02T09:49:38Z stassats: but the error is still too large 2016-08-02T09:49:53Z stassats: flip214: "oh well, the debugger is bonkers too" 2016-08-02T09:50:36Z stassats: #(a b c ) => #<(SIMPLE-VECTOR 3) {1007B5F12F}> 2016-08-02T09:50:41Z stassats: without *print-array* 2016-08-02T09:50:59Z stassats: so, #<(string 10) "abcdefg">? 2016-08-02T09:52:36Z stassats: that looks good to me, i'll make the change and wait for anybody to complain, limiting the length to (* *print-length* 10), not 100 2016-08-02T09:52:44Z ASau quit (Ping timeout: 244 seconds) 2016-08-02T10:28:22Z p_l quit (Ping timeout: 250 seconds) 2016-08-02T10:30:39Z p_l joined #sbcl 2016-08-02T10:46:10Z edgar-rft joined #sbcl 2016-08-02T11:06:58Z sjl joined #sbcl 2016-08-02T11:13:59Z edgar-rft quit (Quit: edgar-rft) 2016-08-02T11:58:29Z irsol quit (Ping timeout: 250 seconds) 2016-08-02T11:59:37Z irsol joined #sbcl 2016-08-02T12:10:07Z blackwolf quit (Ping timeout: 260 seconds) 2016-08-02T12:45:39Z rudolfochrist joined #sbcl 2016-08-02T12:58:18Z cromachina quit (Read error: Connection reset by peer) 2016-08-02T13:49:39Z rudolfochrist quit (Ping timeout: 264 seconds) 2016-08-02T13:55:44Z DavidGu quit (Quit: DavidGu) 2016-08-02T14:02:10Z attila_lendvai joined #sbcl 2016-08-02T14:02:10Z attila_lendvai quit (Changing host) 2016-08-02T14:02:10Z attila_lendvai joined #sbcl 2016-08-02T14:07:00Z jibanes_ is now known as jibanes 2016-08-02T14:08:41Z eudoxia joined #sbcl 2016-08-02T14:14:44Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-08-02T14:20:01Z oleo joined #sbcl 2016-08-02T14:20:01Z oleo quit (Changing host) 2016-08-02T14:20:01Z oleo joined #sbcl 2016-08-02T14:54:43Z rudolfochrist joined #sbcl 2016-08-02T15:16:13Z sjl quit (Read error: Connection reset by peer) 2016-08-02T15:16:30Z eudoxia quit (Quit: Leaving) 2016-08-02T15:33:25Z jackdaniel quit (Ping timeout: 250 seconds) 2016-08-02T16:09:15Z sjl joined #sbcl 2016-08-02T16:10:55Z shka_ joined #sbcl 2016-08-02T16:32:37Z knobo quit (Ping timeout: 260 seconds) 2016-08-02T16:38:51Z dougk_ quit (Ping timeout: 250 seconds) 2016-08-02T16:44:21Z DGASAU quit (Ping timeout: 244 seconds) 2016-08-02T16:45:04Z DGASAU joined #sbcl 2016-08-02T16:49:19Z nzambe joined #sbcl 2016-08-02T16:50:48Z dougk_ joined #sbcl 2016-08-02T17:15:01Z rudolfochrist quit (Ping timeout: 265 seconds) 2016-08-02T18:42:22Z karswell quit (Remote host closed the connection) 2016-08-02T18:42:44Z karswell joined #sbcl 2016-08-02T18:44:50Z attila_lendvai joined #sbcl 2016-08-02T18:44:50Z attila_lendvai quit (Changing host) 2016-08-02T18:44:50Z attila_lendvai joined #sbcl 2016-08-02T18:45:00Z trinque: how might I go about building an sbcl statically linked against glibc? 2016-08-02T18:45:22Z trinque: I have a musl device I'd like to build sbcl for, but don't have a lisp there to cross-compile 2016-08-02T18:45:56Z trinque: I do have an sbcl on another glibc device with same hardware arch 2016-08-02T18:48:50Z brfennpocock joined #sbcl 2016-08-02T18:49:29Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-08-02T18:56:56Z stassats: sbcl doesn't work great with this musl thing 2016-08-02T19:01:06Z edgar-rft joined #sbcl 2016-08-02T19:02:11Z Bike joined #sbcl 2016-08-02T19:11:47Z trinque: works just fine with openbsd's libc 2016-08-02T19:12:13Z trinque: wasn't the question though; I have other static-linked glibc items on musl which run 2016-08-02T19:13:37Z stassats: openbsd libc is not musl 2016-08-02T19:26:55Z trinque: noshit.jpg 2016-08-02T19:27:00Z trinque: what does that have to do with statically linking glibc? 2016-08-02T19:27:37Z stassats: good luck 2016-08-02T19:42:12Z edgar-rft quit (Quit: edgar-rft) 2016-08-02T19:44:43Z attila_lendvai joined #sbcl 2016-08-02T20:33:13Z shka_ quit (Ping timeout: 258 seconds) 2016-08-02T20:58:42Z gingerale quit (Remote host closed the connection) 2016-08-02T21:27:02Z ym quit (Remote host closed the connection) 2016-08-02T21:35:36Z ASau joined #sbcl 2016-08-02T22:31:09Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-08-02T22:36:03Z christoph_debian quit (Ping timeout: 276 seconds) 2016-08-02T22:38:01Z cromachina joined #sbcl 2016-08-02T22:51:39Z stassats quit (Ping timeout: 258 seconds) 2016-08-02T23:04:14Z christoph_debian joined #sbcl 2016-08-02T23:05:17Z ehaliewicz joined #sbcl 2016-08-02T23:21:46Z stassats joined #sbcl 2016-08-02T23:27:02Z jibanes quit (Ping timeout: 250 seconds) 2016-08-02T23:29:06Z jibanes joined #sbcl 2016-08-02T23:31:03Z stassats quit (Ping timeout: 240 seconds)