2017-07-01T01:08:47Z sjl quit (Read error: Connection reset by peer) 2017-07-01T02:06:50Z pierpa joined #ccl 2017-07-01T03:38:54Z pierpa quit (Quit: Page closed) 2017-07-01T03:41:08Z rumbler31 joined #ccl 2017-07-01T03:46:07Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-01T04:39:33Z fkac quit (Remote host closed the connection) 2017-07-01T04:39:50Z fkac joined #ccl 2017-07-01T04:41:53Z rumbler31 joined #ccl 2017-07-01T04:46:34Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-01T05:42:37Z rumbler31 joined #ccl 2017-07-01T05:47:40Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-01T06:18:59Z fkac quit (Read error: No route to host) 2017-07-01T06:19:57Z fkac joined #ccl 2017-07-01T06:43:24Z rumbler31 joined #ccl 2017-07-01T06:47:52Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-01T07:44:06Z rumbler31 joined #ccl 2017-07-01T07:49:13Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-01T08:44:53Z rumbler31 joined #ccl 2017-07-01T08:49:04Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-01T09:45:38Z rumbler31 joined #ccl 2017-07-01T09:49:57Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-01T10:03:33Z edgar-rft joined #ccl 2017-07-01T10:40:22Z sjl joined #ccl 2017-07-01T11:15:49Z fkae joined #ccl 2017-07-01T11:17:36Z fkac quit (Ping timeout: 260 seconds) 2017-07-01T11:17:41Z fkae is now known as fkac 2017-07-01T11:41:50Z eschatologist quit (Ping timeout: 268 seconds) 2017-07-01T12:00:20Z sjl quit (Ping timeout: 268 seconds) 2017-07-01T14:18:57Z fkac quit (Quit: Back later.) 2017-07-01T14:32:38Z mrottenkolber joined #ccl 2017-07-01T15:50:09Z rumbler31 joined #ccl 2017-07-01T15:54:19Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-01T16:50:54Z rumbler31 joined #ccl 2017-07-01T16:55:52Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-01T17:51:37Z rumbler31 joined #ccl 2017-07-01T17:56:07Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-01T18:52:18Z rumbler31 joined #ccl 2017-07-01T18:56:40Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-01T19:29:28Z mrottenkolber quit (Ping timeout: 260 seconds) 2017-07-01T20:06:09Z edgar-rft quit (Quit: edgar-rft) 2017-07-01T20:18:28Z madgoat joined #ccl 2017-07-01T20:18:31Z madgoat left #ccl 2017-07-01T21:31:45Z pierpa joined #ccl 2017-07-01T21:46:51Z eschatologist joined #ccl 2017-07-01T22:32:30Z mrottenkolber joined #ccl 2017-07-02T02:28:32Z mrottenkolber quit (Ping timeout: 260 seconds) 2017-07-02T02:53:50Z pierpa quit (Quit: Page closed) 2017-07-02T11:36:28Z mrottenkolber joined #ccl 2017-07-02T12:57:27Z edgar-rft joined #ccl 2017-07-02T14:35:26Z mrottenkolber: Hey, so I am currently looking at enabling CCL’s USDT probes on Linux (via SystemTap), it works (yay). Doing that I ran into an issue with the Makefile I don’t understand: https://github.com/Clozure/ccl/compare/master...eugeneia:dtrace#diff-31972b7ead13f092d3112e70a2b7ef94R87 2017-07-02T14:40:25Z mrottenkolber: eh... nevermind 2017-07-02T14:40:52Z mrottenkolber: you know when you type a question the answer will come to you 3 of 5 times. 2017-07-02T14:41:01Z mrottenkolber: The darwin Makefiles include a -I. 2017-07-02T14:44:17Z mrottenkolber: anyways, since I made some noise already might as well babble some more: I am interested in getting CCL play nicely with the perf tools on linux. One part is adding more probes to the CCL kernel, if you know any parts there where probes make most sense, let me know. Another thing I want to look is generating a perf map to be able to trace Lisp code (see https://lkml.org/lkml/2009/6/8/499). I haven’t looked into the 2017-07-02T14:44:17Z mrottenkolber: aict it boils down to recording function addresses in a file under /tmp. 2017-07-02T14:45:39Z mrottenkolber: general question: if your app crashes once a year because of a SIGABRT, what do you do? (likely a memory management bug in CCL itself, I guess) 2017-07-02T14:48:04Z mrottenkolber: specific theory: if I turn all DEBUG defines into USDT probes, that won’t affect performance much (i.e. in memory.c). Agree/Disagree? I could then trace my running app (for a year) and see what happened before the SIGABRT 2017-07-02T14:49:52Z mrottenkolber: distant dream: a way to emit USDT probes from lisp code could be nice, but tricky as you usually enable them via autogenerating a C header and then call a macro from that header. 2017-07-02T15:27:27Z mrottenkolber: rme: I want to iterate over all functions in the image, and access their name (if applicable), start address, and byte length in memory. Got any tips? 2017-07-02T15:32:02Z rme: mrottenkolber: ccl::%map-lfuns 2017-07-02T15:35:11Z rme: (uvsize (function-to-function-vector #'cons)) will tell you the size of the function in machine words 2017-07-02T15:36:24Z rme: A while ago we tried to get perf working using an address map, but we ran into trouble because the tools made some assumptions about what sort of mapped memory aresa executable functions could be in. 2017-07-02T15:36:43Z rme: This was probably a year or two ago. 2017-07-02T15:36:54Z mrottenkolber: hmm 2017-07-02T15:37:26Z mrottenkolber: Was this also using the /tmp/perf-$PID.map mechanism? 2017-07-02T15:37:33Z rme: yes, it was. 2017-07-02T15:37:45Z rme: I just found some old mail about this. Let me forward it to you. 2017-07-02T15:37:59Z mrottenkolber: Since that is advertised for JITs I figured it should work for CCL 2017-07-02T15:39:23Z rme: Yes, that seems like a reasonable thing to conclude. 2017-07-02T15:41:17Z mrottenkolber: Fun story: yesterday I read about USDT probes and thought, let’s learn about that by adding probes to the CCL kernel. So I find gc-common.c and look for the place where GC start could be instrumented and... of course the probes are already there :D 2017-07-02T15:41:44Z mrottenkolber: I actually managed to trace them on Linux so that’s cool 2017-07-02T15:42:07Z rme: The whole map file idea seems like it would be ideal. But if the code in question was in a memory-mapped file, the perf tools were expecting that file to be an ELF binary. CCL's heap image file in not an ELF-format file, and tricks we used in the past to make it look like one had stopped working. 2017-07-02T15:42:22Z rme: Ha. I had the same USDT idea myself. :-) 2017-07-02T15:43:56Z mrottenkolber: Right so the issue is that our “JIT” serializes the functions to a file when we dump image, and perf doesn’t expect JITs to do that... 2017-07-02T15:44:05Z mrottenkolber: meh 2017-07-02T15:47:17Z mrottenkolber: I am still somewhat confused about the linux instrumentation landscape, i.e. there is perf and there is systemtap, the latter implements at least parts of the dtrace APIs, they do similar things but are not the same? If I make stuff work for perf, does systemtap also benefit from it? Vice-versa? I bet its simpler on i.e. SmartOS where you have one thing to check out: dtrace 2017-07-02T15:49:26Z rme: I wish I knew myself. The Linux performance testing landscape has undergone a lot of development lately. Brendan Gregg wrote a big book on DTrace. He's now at Netflix, and he speaks and writes frequently on Linux performance analysis. 2017-07-02T15:49:40Z rme: http://www.brendangregg.com might be worth a look 2017-07-02T15:51:39Z rme: I have to go. See you later! 2017-07-02T15:53:46Z mrottenkolber: Thanks for the help! PS: What is a “pure” function in CCL terminology? Or is it indeed in he function sense, i.e. no side effects? 2017-07-02T16:42:37Z fkac joined #ccl 2017-07-02T16:44:16Z dustinm` quit (Write error: Connection reset by peer) 2017-07-02T16:48:28Z dustinm` joined #ccl 2017-07-02T16:58:55Z jackdaniel: referentially transparent I guess 2017-07-02T17:34:36Z fkae joined #ccl 2017-07-02T17:34:37Z fkae quit (Changing host) 2017-07-02T17:34:38Z fkae joined #ccl 2017-07-02T17:36:18Z fkac quit (Ping timeout: 240 seconds) 2017-07-02T17:53:31Z mrottenkolber: rme: seems like gary did almost all the work for me already, kudos! Regarding “the function that does this can't itself be in the readonly area when it runs”, that means I have to COMPILE it after loading the heap image? 2017-07-02T18:39:37Z fkae is now known as fkac 2017-07-02T20:11:42Z pierpa joined #ccl 2017-07-02T20:48:31Z pierpa quit (Quit: Page closed) 2017-07-02T22:01:48Z mrottenkolber: I found this blog a very helpful resource regarding USDT probes and BCC: http://blogs.microsoft.co.il/sasha/tag/tracing/ 2017-07-02T22:14:08Z pierpa joined #ccl 2017-07-02T22:41:08Z mrottenkolber: jackdaniel: no it had to do with purify/impurify, i.e. functions in the :readonly area are “pure” (AFAIU) 2017-07-03T01:15:18Z mrottenkolber quit (Ping timeout: 260 seconds) 2017-07-03T02:40:51Z pierpa quit (Quit: Page closed) 2017-07-03T02:53:48Z fkae joined #ccl 2017-07-03T02:56:13Z fkac quit (Ping timeout: 260 seconds) 2017-07-03T04:29:04Z fkae quit (Ping timeout: 260 seconds) 2017-07-03T04:29:07Z fkac joined #ccl 2017-07-03T07:11:21Z fkac quit (Remote host closed the connection) 2017-07-03T07:11:50Z fkac joined #ccl 2017-07-03T10:21:16Z mrottenkolber joined #ccl 2017-07-03T10:23:02Z mrottenkolber quit (Client Quit) 2017-07-03T10:23:38Z mrottenkolber joined #ccl 2017-07-03T12:25:15Z fkac quit (Remote host closed the connection) 2017-07-03T12:28:17Z fkac joined #ccl 2017-07-03T13:35:11Z mrottenkolber: It works! :-) http://mr.gy/tmp/ring-bench.svg 2017-07-03T17:35:36Z fkac quit (Remote host closed the connection) 2017-07-03T18:53:17Z fkac joined #ccl 2017-07-03T19:16:32Z fkac quit (Read error: No route to host) 2017-07-03T19:20:26Z fkac joined #ccl 2017-07-03T22:33:20Z fkac quit (Remote host closed the connection) 2017-07-03T23:28:05Z pierpa joined #ccl 2017-07-03T23:39:10Z fkac joined #ccl 2017-07-04T00:13:15Z pierpa quit (Quit: Page closed) 2017-07-04T00:43:45Z mrottenkolber quit (Ping timeout: 248 seconds) 2017-07-04T01:06:29Z pierpa joined #ccl 2017-07-04T02:35:07Z fkec joined #ccl 2017-07-04T02:37:13Z fkac quit (Ping timeout: 260 seconds) 2017-07-04T03:27:22Z pierpa quit (Quit: Page closed) 2017-07-04T04:31:14Z edgar-rft quit (Quit: edgar-rft) 2017-07-04T08:39:19Z rumbler31 joined #ccl 2017-07-04T08:43:52Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-04T10:18:43Z fkec quit (Quit: WeeChat 1.8) 2017-07-04T10:45:54Z fkac joined #ccl 2017-07-04T10:51:56Z fkac quit (Quit: WeeChat 1.8) 2017-07-04T10:53:05Z fkac joined #ccl 2017-07-04T10:53:06Z fkac quit (Client Quit) 2017-07-04T10:55:00Z fkac joined #ccl 2017-07-04T10:55:13Z fkac quit (Client Quit) 2017-07-04T11:04:11Z mrottenkolber joined #ccl 2017-07-04T11:33:46Z edgar-rft joined #ccl 2017-07-04T14:37:10Z jdz quit (Ping timeout: 240 seconds) 2017-07-04T14:41:02Z jdz joined #ccl 2017-07-04T16:21:44Z edgar-rft quit (Quit: edgar-rft) 2017-07-05T00:00:01Z mrottenkolber quit (Ping timeout: 248 seconds) 2017-07-05T01:00:56Z pierpa joined #ccl 2017-07-05T03:27:20Z pierpa quit (Quit: Page closed) 2017-07-05T06:55:31Z rumbler31 joined #ccl 2017-07-05T07:00:27Z rumbler31 quit (Ping timeout: 258 seconds) 2017-07-05T08:18:35Z mrottenkolber joined #ccl 2017-07-05T08:45:06Z hhdave joined #ccl 2017-07-05T10:00:37Z Merv__ joined #ccl 2017-07-05T11:12:06Z mdc joined #ccl 2017-07-05T12:06:56Z mrottenkolber: On x86_64, what does %rbp exactly point to? I am trying to find out how to get the name of the function executing out of a core dump, i.e. follow %rbp to the function object, extract its name out of there. 2017-07-05T12:07:14Z mrottenkolber: I already know how to get the name out of the function object thanks to https://ccl.clozure.com/blog/?p=53 2017-07-05T12:08:32Z mrottenkolber: Just leaves getting to the function object from the frame pointer 2017-07-05T12:23:13Z Merv__ quit (Remote host closed the connection) 2017-07-05T12:25:19Z mrottenkolber: eh silly question 2017-07-05T12:26:00Z mrottenkolber: of course, %rbp (the frame pointer), is a pointer to the previous frame poiter 2017-07-05T12:41:58Z mrottenkolber: %cfp-lfun is the recipe 2017-07-05T12:45:16Z mrottenkolber: actually that yields the parent function, huh 2017-07-05T13:09:37Z mrottenkolber: %return-address-function is where the money is at 2017-07-05T13:13:25Z milanj joined #ccl 2017-07-05T13:18:47Z dim left #ccl 2017-07-05T13:24:49Z mrottenkolber: if I understand correctly a return address is a special value, i.e. not any possible value of the instruction pointer? 2017-07-05T13:34:45Z milanj quit (Ping timeout: 240 seconds) 2017-07-05T14:20:03Z milanj joined #ccl 2017-07-05T14:22:43Z rumbler31 joined #ccl 2017-07-05T14:23:54Z milanj_ joined #ccl 2017-07-05T14:26:48Z milanj quit (Ping timeout: 260 seconds) 2017-07-05T14:30:20Z _rumbler31 joined #ccl 2017-07-05T14:33:49Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-05T14:43:35Z rme: on x86, a return address is "tagged". That is, the call instruction is aligned in such a way that the return address that is automatically pushed onto the stack has a particular tag value. 2017-07-05T14:44:16Z rme: there's some special-casing that goes on sometimes where the return address is compared to ret1valn 2017-07-05T15:11:21Z edgar-rft joined #ccl 2017-07-05T15:17:35Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-05T15:58:17Z Merv_ joined #ccl 2017-07-05T16:34:04Z hhdave quit (Ping timeout: 260 seconds) 2017-07-05T19:04:57Z rumbler31 joined #ccl 2017-07-05T19:09:13Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-05T19:31:16Z mrottenkolber joined #ccl 2017-07-05T19:34:48Z milanj_ quit (Quit: Leaving) 2017-07-05T19:34:52Z mrottenkolber quit (Client Quit) 2017-07-05T19:35:18Z mrottenkolber joined #ccl 2017-07-05T19:36:12Z milanj joined #ccl 2017-07-05T19:38:08Z milanj quit (Client Quit) 2017-07-05T20:00:18Z mrottenkolber: rme: did I get that right? https://gist.github.com/eugeneia/a13f4b4b106af56a566d97065739c2ee 2017-07-05T20:03:17Z mrottenkolber: I don’t really get the movslq 2017-07-05T20:04:04Z xrme: Did you model this after tra_function() in lisp-kerne/x86-utils.c? 2017-07-05T20:04:29Z mrottenkolber: ooooh I now I get it I looed up the wrong instruction 2017-07-05T20:04:56Z mrottenkolber: no this is from ccl/level-0/X86/x86-def.lisp 2017-07-05T20:05:13Z mrottenkolber: I am trying to understand it 2017-07-05T20:05:41Z rumbler31 joined #ccl 2017-07-05T20:06:33Z xrme: on x86-64, if you say (movl (@ something) (% imm0)), the upper 32-bits of imm0 (aka rax) will always be cleared. 2017-07-05T20:07:30Z xrme: the movslq makes the mov sign-extend. (movslq means "move sign-extended long to quad"). But it sounds like you already figured that out. 2017-07-05T20:08:44Z mrottenkolber: is the argument order reversed? i.e. this writes to imm0 right? 2017-07-05T20:10:14Z xrme: yeah, we use the at&t style operand order in ccl. The destination operand is on the right. 2017-07-05T20:10:31Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-05T20:10:45Z mrottenkolber is catching up on his assembler moves so this is all still new 2017-07-05T20:19:16Z xrme: We used the at&t order because that is what the system assemblers (namely gas) all used. As I recall, at the time, gas didn't support Intel syntax at all. 2017-07-05T20:29:34Z mrottenkolber: Can you think of a way to find out the current function only by looking at the frame pointer, instruction pointer and heap? I.e. %cfp-lfun returns the parent function because its underlying mechanism only works on specially crafted return addresses and exception frames. That already gets me quite far already, but the innermost function would still be “unknown” to dtrace (using only this meachanism). 2017-07-05T20:31:29Z xrme: there's a register named %fn that nearly always contains the current function 2017-07-05T20:31:42Z mrottenkolber: oh 2017-07-05T20:31:46Z mrottenkolber: :D 2017-07-05T20:34:29Z mrottenkolber: what x86_64 register is that mapped to? 2017-07-05T20:34:57Z xrme: r13 2017-07-05T20:35:06Z xrme: I knew you would ask, so I looked it up. 2017-07-05T20:35:11Z mrottenkolber: haha 2017-07-05T20:36:04Z xrme: see compiler/X86/X8664/x8664-arch.lisp 2017-07-05T20:38:05Z mrottenkolber: sure its not r9? 2017-07-05T20:39:37Z mrottenkolber: and of course I have to ask what nearly always means? Sometimes it contains the function to be tail-called? 2017-07-05T20:52:27Z xrme: There is (or was) an interval during the function calling sequence where %fn wouldn't be right. There might be other cases, but I don't remember at the moment. 2017-07-05T20:58:11Z xrme: r9 is temp1 2017-07-05T20:58:46Z xrme: there's an xfn name that maps to temp1 sometimes 2017-07-05T21:06:24Z rumbler31 joined #ccl 2017-07-05T21:10:40Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-05T21:33:51Z mrottenkolber: can I test if %fn is bogus by asserting its (function) tag? And is the second last constant in a function object always its name? 2017-07-05T21:38:29Z xrme: I would try to get away with assuming that %fn always contains some function when running lisp code. 2017-07-05T21:39:33Z xrme: You can always check its tag if you want to be super-careful. 2017-07-05T22:07:12Z rumbler31 joined #ccl 2017-07-05T22:12:01Z rumbler31 quit (Ping timeout: 258 seconds) 2017-07-05T22:12:58Z _rumbler31 quit (Ping timeout: 268 seconds) 2017-07-05T23:08:04Z rumbler31 joined #ccl 2017-07-05T23:12:26Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-05T23:21:01Z rumbler31 joined #ccl 2017-07-05T23:25:14Z rumbler31 quit (Ping timeout: 258 seconds) 2017-07-05T23:50:14Z mrottenkolber: xrme: Good night, and thanks for the input! :-) 2017-07-05T23:54:45Z mrottenkolber quit (Ping timeout: 258 seconds) 2017-07-06T00:08:46Z rumbler31 joined #ccl 2017-07-06T00:13:05Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-06T01:09:29Z rumbler31 joined #ccl 2017-07-06T01:13:55Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-06T02:07:29Z pierpa joined #ccl 2017-07-06T02:10:18Z rumbler31 joined #ccl 2017-07-06T02:14:40Z rumbler31 quit (Ping timeout: 258 seconds) 2017-07-06T03:10:59Z rumbler31 joined #ccl 2017-07-06T03:15:37Z rumbler31 quit (Ping timeout: 258 seconds) 2017-07-06T03:22:55Z rme quit (Ping timeout: 180 seconds) 2017-07-06T03:24:07Z rme quit (Ping timeout: 246 seconds) 2017-07-06T03:26:35Z pierpa quit (Quit: Page closed) 2017-07-06T03:40:01Z rme joined #ccl 2017-07-06T04:11:46Z rumbler31 joined #ccl 2017-07-06T04:16:11Z rumbler31 quit (Ping timeout: 258 seconds) 2017-07-06T05:11:52Z billstclair_ joined #ccl 2017-07-06T05:12:31Z rumbler31 joined #ccl 2017-07-06T05:13:10Z |3b|` joined #ccl 2017-07-06T05:14:34Z swflint_away joined #ccl 2017-07-06T05:16:58Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-06T05:22:24Z billstclair quit (Ping timeout: 240 seconds) 2017-07-06T05:22:24Z |3b| quit (Remote host closed the connection) 2017-07-06T05:22:24Z swflint quit (Ping timeout: 240 seconds) 2017-07-06T05:22:27Z swflint_away is now known as swflint 2017-07-06T05:22:31Z billstclair_ is now known as billstclair 2017-07-06T05:30:23Z kini quit (Quit: No Ping reply in 180 seconds.) 2017-07-06T05:32:28Z kini joined #ccl 2017-07-06T06:13:12Z rumbler31 joined #ccl 2017-07-06T06:17:42Z rumbler31 quit (Ping timeout: 258 seconds) 2017-07-06T06:21:28Z kini quit (Ping timeout: 260 seconds) 2017-07-06T06:22:39Z kini joined #ccl 2017-07-06T06:36:22Z rme quit (Ping timeout: 180 seconds) 2017-07-06T06:37:34Z rme quit (Ping timeout: 255 seconds) 2017-07-06T07:34:02Z rme joined #ccl 2017-07-06T08:12:20Z hhdave joined #ccl 2017-07-06T08:16:35Z hhdave quit (Ping timeout: 240 seconds) 2017-07-06T08:17:49Z hhdave joined #ccl 2017-07-06T08:21:51Z hhdave_ joined #ccl 2017-07-06T08:22:20Z hhdave quit (Ping timeout: 260 seconds) 2017-07-06T08:22:20Z hhdave_ is now known as hhdave 2017-07-06T09:18:05Z Merv_ quit (Remote host closed the connection) 2017-07-06T11:14:30Z mrottenkolber joined #ccl 2017-07-06T11:54:50Z Merv_ joined #ccl 2017-07-06T12:05:39Z Merv_ quit (Remote host closed the connection) 2017-07-06T12:42:20Z Merv_ joined #ccl 2017-07-06T13:18:08Z rumbler31 joined #ccl 2017-07-06T13:22:58Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-06T13:46:48Z rumbler31 joined #ccl 2017-07-06T13:59:16Z mrottenkolber: rme: I am somewhat stuck at getting the symbol name from a symbol, so apparently a symbol with its last four bits masked off does not point to its underlying uvector? 2017-07-06T14:09:25Z mrottenkolber: instead there is %symptr->symvector which subtracts 1 from the symbols lowest byte, yielding the underlying uvector supposedly. But what I get at this way doesn’t look like a uvector... 2017-07-06T14:19:18Z rumbler3_ joined #ccl 2017-07-06T14:23:46Z rumbler3_ quit (Ping timeout: 258 seconds) 2017-07-06T14:35:25Z milanj joined #ccl 2017-07-06T14:38:52Z rme: On x8664, symbols have their own tag (x8664::tag-symbol, which is 6). But they are laid out in memory just like a regular miscobj (i.e., a uvector). x8664::tag-misc is 5. 2017-07-06T14:39:43Z rme: if you have a "symptr", depending on what you are doing, you might be able to use (symptr.pname s) 2017-07-06T14:42:12Z mrottenkolber: hmm the symbol I’m looking at in GDB appears to have a 0x2E tag, I should read up one more time on the tagging scheme(s) 2017-07-06T14:42:14Z rme: maybe looking in l0-symbol.lisp will be helpful 2017-07-06T14:42:47Z rme: there's the pointer, which will have a tag, and then the uvector header, which also has a subtag (in the low byte) 2017-07-06T14:43:15Z mrottenkolber: right actually, I’m looking at a pointer with tag 0xE 2017-07-06T14:46:06Z mrottenkolber: F would be a function, so E is the symbol pointer tag? 2017-07-06T14:46:33Z rme: so that's x8664::fulltag-symbol. so, to mask/subtract off the tag bits and show the uvector elements, say something like x/5g 0xdeadbeefe - 0xe 2017-07-06T14:46:47Z rme: I have to run. I might be back on the channel in a bit. 2017-07-06T15:17:22Z Merv_ quit (Remote host closed the connection) 2017-07-06T15:20:02Z rumbler3_ joined #ccl 2017-07-06T15:24:55Z rumbler3_ quit (Ping timeout: 276 seconds) 2017-07-06T16:20:48Z rumbler3_ joined #ccl 2017-07-06T16:26:01Z rumbler3_ quit (Ping timeout: 276 seconds) 2017-07-06T16:41:12Z hhdave quit (Ping timeout: 260 seconds) 2017-07-06T17:21:36Z rumbler3_ joined #ccl 2017-07-06T17:25:51Z rumbler3_ quit (Ping timeout: 258 seconds) 2017-07-06T17:35:14Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-06T18:49:39Z Merv_ joined #ccl 2017-07-06T19:23:03Z rumbler3_ joined #ccl 2017-07-06T19:27:19Z rumbler3_ quit (Ping timeout: 246 seconds) 2017-07-06T20:19:06Z pierpa joined #ccl 2017-07-06T20:23:47Z rumbler3_ joined #ccl 2017-07-06T20:28:19Z rumbler3_ quit (Ping timeout: 258 seconds) 2017-07-06T21:10:05Z mrottenkolber joined #ccl 2017-07-06T21:24:33Z rumbler3_ joined #ccl 2017-07-06T21:29:08Z rumbler3_ quit (Ping timeout: 260 seconds) 2017-07-06T22:05:27Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-06T22:20:55Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-06T22:25:11Z rumbler31 joined #ccl 2017-07-06T22:29:41Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-06T22:30:22Z pierpa quit (Quit: Page closed) 2017-07-06T23:26:01Z rumbler31 joined #ccl 2017-07-06T23:31:07Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-06T23:48:16Z rumbler31 joined #ccl 2017-07-07T00:03:56Z |3b|` is now known as |3b| 2017-07-07T02:24:52Z rumbler31 quit (Remote host closed the connection) 2017-07-07T03:49:22Z milanj quit (Quit: This computer has gone to sleep) 2017-07-07T04:25:23Z rumbler31 joined #ccl 2017-07-07T04:29:28Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-07T05:05:49Z Merv_ quit (Remote host closed the connection) 2017-07-07T06:47:45Z rme quit (Ping timeout: 180 seconds) 2017-07-07T06:49:42Z rme quit (Ping timeout: 258 seconds) 2017-07-07T06:50:02Z rme joined #ccl 2017-07-07T06:59:06Z Merv_ joined #ccl 2017-07-07T06:59:15Z Merv_ quit (Remote host closed the connection) 2017-07-07T06:59:31Z Merv_ joined #ccl 2017-07-07T08:49:02Z hhdave joined #ccl 2017-07-07T11:10:53Z rumbler31 joined #ccl 2017-07-07T12:24:25Z mdc quit (Read error: Connection reset by peer) 2017-07-07T16:35:35Z hhdave quit (Ping timeout: 240 seconds) 2017-07-07T16:56:23Z Merv_ quit (Remote host closed the connection) 2017-07-07T18:37:07Z tfeb joined #ccl 2017-07-07T18:58:20Z sabetts joined #ccl 2017-07-07T18:58:51Z tfeb quit (Quit: Leaving...) 2017-07-07T19:12:12Z Merv_ joined #ccl 2017-07-07T19:41:48Z milanj joined #ccl 2017-07-07T20:48:57Z pierpa joined #ccl 2017-07-07T21:44:55Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-07T21:52:41Z Merv__ joined #ccl 2017-07-07T21:54:43Z Merv_ quit (Ping timeout: 260 seconds) 2017-07-07T22:15:22Z sabetts quit (Ping timeout: 255 seconds) 2017-07-08T00:42:46Z pierpa quit (Quit: Page closed) 2017-07-08T01:03:37Z eschatologist quit (Ping timeout: 268 seconds) 2017-07-08T01:11:06Z eschatologist joined #ccl 2017-07-08T04:07:36Z sabetts joined #ccl 2017-07-08T05:41:35Z sabetts quit (Ping timeout: 240 seconds) 2017-07-08T06:55:58Z milanj quit (Quit: This computer has gone to sleep) 2017-07-08T07:01:38Z milanj joined #ccl 2017-07-08T09:42:43Z rumbler31 joined #ccl 2017-07-08T09:47:43Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-08T12:47:42Z milanj quit (Quit: Leaving) 2017-07-08T20:06:19Z swflint quit (Ping timeout: 246 seconds) 2017-07-08T20:07:38Z swflint joined #ccl 2017-07-08T23:18:03Z pierpa joined #ccl 2017-07-08T23:42:06Z rumbler31 joined #ccl 2017-07-08T23:46:09Z rumbler31 quit (Ping timeout: 248 seconds) 2017-07-08T23:49:43Z sabetts joined #ccl 2017-07-09T01:10:19Z pierpa quit (Quit: Page closed) 2017-07-09T06:38:25Z sabetts quit (Ping timeout: 248 seconds) 2017-07-09T18:45:49Z mrottenkolber joined #ccl 2017-07-10T00:35:05Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-10T02:40:53Z eschatologist quit (Ping timeout: 268 seconds) 2017-07-10T03:47:24Z fiddlerwoaroof: I'm having issues with the Objective-C bridge 2017-07-10T03:47:42Z fiddlerwoaroof: When I try to run the example in section 14.5.1 here: https://ccl.clozure.com/manual/chapter14.5.html#Defining-Objective-C-Classes 2017-07-10T03:48:43Z fiddlerwoaroof: I get an error "class_addIvar failed" (ccl HEAD, commit 1aa27a22) 2017-07-10T03:48:43Z fiddlerwoaroof: 2017-07-10T03:52:07Z fiddlerwoaroof: Hmm, maybe this has something to do with the fact that I'm not defining the class in the right thread... 2017-07-10T03:58:11Z fiddlerwoaroof: It seems to occur mostly when I define a class and then attempt to redefine it. 2017-07-10T04:20:20Z eschatologist joined #ccl 2017-07-10T04:27:47Z rme: I think there are restrictions on re-definining Objective-C classes. 2017-07-10T04:29:13Z rme: I'd have to review the Objective-C runtime documentation, but I seem to recall that after a class is added to the runtime, it's not allowed to add/remove instance variables from it. 2017-07-10T04:30:57Z rme: Objective-C doesn't have update-instance-for-redefined-class, after all. 2017-07-10T04:31:04Z fiddlerwoaroof: Hmm, I haven't entirely been able to figure out when it happens: it definitely happens the second time I try to define a class with the same name 2017-07-10T04:31:15Z fiddlerwoaroof: even if I don't change the slots at all 2017-07-10T04:31:35Z fiddlerwoaroof: But, it also seems to happen the first time, in a sort of random way. 2017-07-10T04:32:30Z fiddlerwoaroof: Is there any tutorial for writing cocoa apps around? 2017-07-10T04:33:13Z rme: In general, or with CCL? There's https://github.com/Clozure/dpf that might possibly be helpful. 2017-07-10T04:33:52Z fiddlerwoaroof: With ccl 2017-07-10T04:37:17Z rme: The existing tutorial-ish stuff on trac.clozure.com/ccl has become rather out-of-date, so I hesitate to point you there. 2017-07-10T04:37:46Z rme: The UI situation certainly does need some attention. 2017-07-10T04:38:46Z fiddlerwoaroof: Yeah, I was hoping to revive mcclim's cocoa backend 2017-07-10T04:39:07Z fiddlerwoaroof: But, I don't know either mcclim or cocoa well enough to do this yet... 2017-07-10T04:40:53Z fiddlerwoaroof: This is the code that's causing issues for me at the moment: https://github.com/robert-strandh/McCLIM/blob/master/Backends/beagle/native/lisp-bezier-path.lisp 2017-07-10T04:41:41Z fiddlerwoaroof: the form at line 28 fails with "class_addIvar failed" and I haven't figured out why yet. 2017-07-10T04:44:00Z rme: Does (find-class 'beagle::lisp-bezier-path) returns non-nil before evaluating that? I expect it must. 2017-07-10T04:46:25Z fiddlerwoaroof: No, I get an error "Class named LISP-BEZIER-PATH not found." for that find-class 2017-07-10T04:49:42Z fiddlerwoaroof: Hmm, it does seem to be creating an objective-c class, though 2017-07-10T04:52:45Z rme: Note that Objective-C class names are in a single namespace, so the lisp package the Objective-C class is defined in doesn't really matter. (ccl::lookup-objc-class "LispBezierPath") would show you if the Objective-C runtime already knows about that class. 2017-07-10T04:55:18Z fiddlerwoaroof: Yeah, I don't know what else would define this... 2017-07-10T04:56:59Z Merv__ quit (Remote host closed the connection) 2017-07-10T05:00:59Z fiddlerwoaroof: Interesting... if I load the class via slime it fails (maybe compiling + then loading a class counts as a redefinition)? 2017-07-10T05:01:14Z fiddlerwoaroof: If I use the "evaluate all" option from the ccl ide, it loads fine.... 2017-07-10T06:53:56Z Merv_ joined #ccl 2017-07-10T07:16:36Z Merv_ quit 2017-07-10T07:35:24Z Merv_ joined #ccl 2017-07-10T08:24:53Z hhdave joined #ccl 2017-07-10T13:02:08Z mrottenkolber joined #ccl 2017-07-10T13:22:39Z rumbler31 joined #ccl 2017-07-10T13:28:23Z milanj joined #ccl 2017-07-10T15:40:27Z sabetts joined #ccl 2017-07-10T16:45:53Z hhdave quit (Ping timeout: 248 seconds) 2017-07-10T18:11:26Z Merv_ quit (Remote host closed the connection) 2017-07-10T18:12:11Z Merv_ joined #ccl 2017-07-10T18:16:43Z Merv_ quit (Ping timeout: 260 seconds) 2017-07-10T19:20:27Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-10T19:42:09Z Merv_ joined #ccl 2017-07-10T20:00:28Z milanj quit (Quit: This computer has gone to sleep) 2017-07-10T20:15:35Z Merv_ quit (Ping timeout: 240 seconds) 2017-07-10T20:24:45Z pierpa joined #ccl 2017-07-10T20:33:25Z milanj joined #ccl 2017-07-10T20:53:25Z hhdave joined #ccl 2017-07-10T21:12:17Z Merv_ joined #ccl 2017-07-10T21:22:57Z hhdave quit (Quit: hhdave) 2017-07-10T21:45:37Z Merv_ quit (Ping timeout: 248 seconds) 2017-07-10T22:42:18Z Merv_ joined #ccl 2017-07-10T22:47:36Z Merv_ quit (Ping timeout: 260 seconds) 2017-07-10T23:17:15Z milanj quit (Quit: Leaving) 2017-07-10T23:23:05Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-10T23:43:10Z pierpa quit (Quit: Page closed) 2017-07-10T23:45:57Z Merv_ joined #ccl 2017-07-11T00:19:13Z Merv_ quit (Ping timeout: 248 seconds) 2017-07-11T01:15:44Z Merv_ joined #ccl 2017-07-11T01:48:57Z Merv_ quit (Ping timeout: 240 seconds) 2017-07-11T02:16:19Z rumbler31 joined #ccl 2017-07-11T02:45:50Z Merv_ joined #ccl 2017-07-11T03:18:15Z rumbler31 quit (Remote host closed the connection) 2017-07-11T03:18:57Z Merv_ quit (Ping timeout: 248 seconds) 2017-07-11T03:28:28Z rumbler31 joined #ccl 2017-07-11T03:33:01Z rumbler31 quit (Ping timeout: 258 seconds) 2017-07-11T04:15:47Z Merv_ joined #ccl 2017-07-11T04:49:05Z Merv_ quit (Ping timeout: 240 seconds) 2017-07-11T06:00:13Z sabetts quit (Ping timeout: 260 seconds) 2017-07-11T07:03:31Z Merv_ joined #ccl 2017-07-11T08:03:57Z hhdave joined #ccl 2017-07-11T08:05:32Z hhdave quit (Read error: Connection reset by peer) 2017-07-11T08:06:17Z hhdave joined #ccl 2017-07-11T08:15:09Z hhdave quit (Ping timeout: 240 seconds) 2017-07-11T08:21:25Z hhdave joined #ccl 2017-07-11T09:04:59Z eschatologist quit (Ping timeout: 268 seconds) 2017-07-11T09:17:19Z eschatologist joined #ccl 2017-07-11T09:37:40Z eschatologist quit (Ping timeout: 268 seconds) 2017-07-11T09:40:16Z eschatologist joined #ccl 2017-07-11T12:03:24Z mrottenkolber joined #ccl 2017-07-11T13:14:17Z rumbler31 joined #ccl 2017-07-11T13:26:30Z jdz quit (Ping timeout: 240 seconds) 2017-07-11T13:31:06Z jdz joined #ccl 2017-07-11T13:31:22Z milanj joined #ccl 2017-07-11T16:31:55Z sabetts joined #ccl 2017-07-11T16:45:27Z hhdave quit (Ping timeout: 240 seconds) 2017-07-11T17:20:24Z rumbler3_ joined #ccl 2017-07-11T17:24:40Z rumbler3_ quit (Ping timeout: 255 seconds) 2017-07-11T18:55:39Z Merv_ quit (Remote host closed the connection) 2017-07-11T18:56:15Z Merv_ joined #ccl 2017-07-11T19:00:56Z Merv_ quit (Ping timeout: 260 seconds) 2017-07-11T19:07:41Z milanj quit (Ping timeout: 246 seconds) 2017-07-11T19:09:34Z milanj joined #ccl 2017-07-11T19:20:58Z rumbler3_ joined #ccl 2017-07-11T19:25:04Z rumbler3_ quit (Ping timeout: 246 seconds) 2017-07-11T20:17:37Z Merv_ joined #ccl 2017-07-11T20:18:22Z Merv_ quit (Read error: Connection reset by peer) 2017-07-11T20:19:07Z Merv_ joined #ccl 2017-07-11T20:21:26Z milanj quit (Ping timeout: 255 seconds) 2017-07-11T20:36:13Z pierpa joined #ccl 2017-07-11T20:51:10Z Merv_ quit (Ping timeout: 246 seconds) 2017-07-11T21:19:33Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-11T21:47:35Z Merv_ joined #ccl 2017-07-11T22:14:30Z rumbler31 joined #ccl 2017-07-11T22:19:46Z rumbler31 quit (Ping timeout: 277 seconds) 2017-07-11T22:21:16Z Merv_ quit (Ping timeout: 255 seconds) 2017-07-11T23:17:38Z Merv_ joined #ccl 2017-07-11T23:21:38Z Merv_ quit (Ping timeout: 240 seconds) 2017-07-11T23:32:56Z pierpa quit (Quit: Page closed) 2017-07-12T00:18:52Z Merv_ joined #ccl 2017-07-12T00:53:04Z Merv_ quit (Ping timeout: 276 seconds) 2017-07-12T01:48:10Z mrottenkolber quit (Ping timeout: 258 seconds) 2017-07-12T01:48:56Z Merv_ joined #ccl 2017-07-12T02:22:25Z Merv_ quit (Ping timeout: 248 seconds) 2017-07-12T03:18:55Z Merv_ joined #ccl 2017-07-12T03:25:09Z adlai quit (Ping timeout: 258 seconds) 2017-07-12T03:31:23Z adlai joined #ccl 2017-07-12T03:51:57Z Merv_ quit (Ping timeout: 240 seconds) 2017-07-12T04:15:19Z sabetts quit (Ping timeout: 246 seconds) 2017-07-12T04:49:07Z Merv_ joined #ccl 2017-07-12T04:58:47Z Merv_ quit (Read error: Connection reset by peer) 2017-07-12T05:22:03Z Merv_ joined #ccl 2017-07-12T06:05:32Z Merv_ quit (Remote host closed the connection) 2017-07-12T06:06:14Z Merv_ joined #ccl 2017-07-12T06:10:35Z Merv_ quit (Ping timeout: 240 seconds) 2017-07-12T06:17:32Z rumbler31 joined #ccl 2017-07-12T06:21:40Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-12T06:54:55Z toni joined #ccl 2017-07-12T07:52:36Z toni quit 2017-07-12T08:13:31Z hhdave joined #ccl 2017-07-12T08:39:00Z Merv_ joined #ccl 2017-07-12T09:04:49Z hhdave_ joined #ccl 2017-07-12T09:05:46Z hhdave quit (Ping timeout: 276 seconds) 2017-07-12T09:05:46Z hhdave_ is now known as hhdave 2017-07-12T09:09:09Z hhdave_ joined #ccl 2017-07-12T09:09:48Z hhdave quit (Ping timeout: 240 seconds) 2017-07-12T09:13:08Z hhdave_ quit (Ping timeout: 240 seconds) 2017-07-12T09:13:43Z hhdave joined #ccl 2017-07-12T09:22:52Z hhdave quit (Ping timeout: 260 seconds) 2017-07-12T09:30:55Z hhdave joined #ccl 2017-07-12T11:21:30Z tfeb joined #ccl 2017-07-12T12:27:13Z hhdave quit (Ping timeout: 260 seconds) 2017-07-12T12:31:05Z hhdave joined #ccl 2017-07-12T12:35:05Z hhdave quit (Ping timeout: 240 seconds) 2017-07-12T12:41:22Z sixbitslacker quit (Ping timeout: 246 seconds) 2017-07-12T12:41:22Z itruslove quit (Ping timeout: 246 seconds) 2017-07-12T12:41:32Z hhdave joined #ccl 2017-07-12T12:43:37Z itruslove joined #ccl 2017-07-12T12:48:08Z hhdave quit (Ping timeout: 240 seconds) 2017-07-12T12:51:39Z hhdave joined #ccl 2017-07-12T12:58:33Z milanj joined #ccl 2017-07-12T12:59:24Z hhdave quit (Ping timeout: 260 seconds) 2017-07-12T13:02:01Z hhdave joined #ccl 2017-07-12T13:05:28Z mrottenkolber joined #ccl 2017-07-12T13:07:35Z rumbler31 joined #ccl 2017-07-12T13:08:39Z hhdave quit (Ping timeout: 255 seconds) 2017-07-12T13:17:41Z hhdave joined #ccl 2017-07-12T13:26:07Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-12T13:37:37Z hhdave_ joined #ccl 2017-07-12T13:38:30Z hhdave quit (Ping timeout: 240 seconds) 2017-07-12T13:44:01Z hhdave_ quit (Ping timeout: 248 seconds) 2017-07-12T14:59:46Z ekinmur joined #ccl 2017-07-12T14:59:54Z ekinmur quit (Client Quit) 2017-07-12T15:28:28Z edgar-rft quit (Quit: edgar-rft) 2017-07-12T15:44:29Z sabetts joined #ccl 2017-07-12T16:17:05Z rumbler31 joined #ccl 2017-07-12T16:19:23Z tfeb quit (Quit: Leaving...) 2017-07-12T16:28:08Z Merv_ quit (Remote host closed the connection) 2017-07-12T18:53:58Z sabetts quit (Ping timeout: 260 seconds) 2017-07-12T19:00:05Z edgar-rft joined #ccl 2017-07-12T19:36:27Z Merv_ joined #ccl 2017-07-12T20:09:27Z Merv_ quit (Ping timeout: 240 seconds) 2017-07-12T20:45:25Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-12T21:06:40Z Merv_ joined #ccl 2017-07-12T21:40:25Z Merv_ quit (Ping timeout: 276 seconds) 2017-07-12T21:43:20Z milanj quit (Quit: Leaving) 2017-07-12T21:48:07Z rumbler31 joined #ccl 2017-07-12T21:53:03Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-12T22:16:37Z sigjuice quit (Ping timeout: 240 seconds) 2017-07-12T22:19:40Z sigjuice joined #ccl 2017-07-12T22:32:32Z eschatologist quit (Excess Flood) 2017-07-12T22:32:47Z eschatologist joined #ccl 2017-07-12T22:35:04Z jackdaniel quit (Remote host closed the connection) 2017-07-12T22:35:12Z jackdaniel joined #ccl 2017-07-12T22:36:09Z sabetts joined #ccl 2017-07-12T22:36:38Z Merv_ joined #ccl 2017-07-12T23:10:21Z Merv_ quit (Ping timeout: 268 seconds) 2017-07-12T23:38:36Z pierpa joined #ccl 2017-07-13T00:06:49Z Merv_ joined #ccl 2017-07-13T00:37:11Z rme quit (Quit: rme) 2017-07-13T00:37:12Z rme quit (Quit: rme) 2017-07-13T00:37:48Z rumbler31 joined #ccl 2017-07-13T00:40:28Z Merv_ quit (Ping timeout: 260 seconds) 2017-07-13T00:41:57Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-13T00:48:33Z pierpa quit (Quit: Page closed) 2017-07-13T01:20:16Z rumbler31 joined #ccl 2017-07-13T01:25:17Z rumbler31 quit (Remote host closed the connection) 2017-07-13T01:36:49Z Merv_ joined #ccl 2017-07-13T01:41:27Z Merv_ quit (Ping timeout: 240 seconds) 2017-07-13T02:37:33Z Merv_ joined #ccl 2017-07-13T03:11:07Z Merv_ quit (Ping timeout: 240 seconds) 2017-07-13T03:29:50Z mrottenkolber quit (Ping timeout: 246 seconds) 2017-07-13T04:07:40Z Merv_ joined #ccl 2017-07-13T04:41:05Z Merv_ quit (Ping timeout: 240 seconds) 2017-07-13T04:58:09Z sabetts quit (Ping timeout: 268 seconds) 2017-07-13T06:26:22Z rumbler31 joined #ccl 2017-07-13T06:30:40Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-13T07:02:20Z Merv_ joined #ccl 2017-07-13T08:04:36Z hhdave joined #ccl 2017-07-13T08:05:00Z hhdave quit (Client Quit) 2017-07-13T08:11:47Z hhdave joined #ccl 2017-07-13T08:16:01Z hhdave quit (Ping timeout: 246 seconds) 2017-07-13T11:45:56Z rumbler31 joined #ccl 2017-07-13T12:00:41Z hhdave joined #ccl 2017-07-13T12:03:55Z rumbler31 quit (Remote host closed the connection) 2017-07-13T12:43:06Z mrottenkolber joined #ccl 2017-07-13T13:00:39Z rumbler31 joined #ccl 2017-07-13T13:17:23Z deep-book-gk_ joined #ccl 2017-07-13T13:19:42Z deep-book-gk_ left #ccl 2017-07-13T13:39:52Z hhdave quit (Remote host closed the connection) 2017-07-13T13:40:14Z hhdave joined #ccl 2017-07-13T14:00:53Z hhdave_ joined #ccl 2017-07-13T14:00:57Z hhdave quit (Ping timeout: 240 seconds) 2017-07-13T14:04:53Z hhdave joined #ccl 2017-07-13T14:05:49Z hhdave_ quit (Ping timeout: 276 seconds) 2017-07-13T15:01:46Z mrottenkolber quit (Quit: Leaving.) 2017-07-13T15:02:16Z mrottenkolber joined #ccl 2017-07-13T16:19:38Z mrottenkolber quit (Ping timeout: 260 seconds) 2017-07-13T16:26:22Z tfeb joined #ccl 2017-07-13T16:42:28Z hhdave quit (Ping timeout: 276 seconds) 2017-07-13T18:20:07Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-13T18:23:49Z rumbler31 joined #ccl 2017-07-13T18:34:14Z rumbler31 quit (Read error: Connection reset by peer) 2017-07-13T19:06:24Z Merv_ quit (Remote host closed the connection) 2017-07-13T19:29:42Z rumbler31 joined #ccl 2017-07-13T20:00:33Z tfeb quit (Remote host closed the connection) 2017-07-13T20:44:50Z Merv_ joined #ccl 2017-07-13T21:09:01Z rumbler31 quit (Read error: Connection reset by peer) 2017-07-13T21:09:50Z rumbler31 joined #ccl 2017-07-13T21:24:41Z rumbler31 quit (Read error: Connection reset by peer) 2017-07-13T21:32:25Z sabetts joined #ccl 2017-07-13T23:04:55Z pierpa joined #ccl 2017-07-14T02:52:42Z pierpa quit (Quit: Page closed) 2017-07-14T05:29:56Z Merv_ quit (Remote host closed the connection) 2017-07-14T05:56:53Z sabetts quit (Ping timeout: 260 seconds) 2017-07-14T07:06:38Z Merv_ joined #ccl 2017-07-14T08:09:55Z hhdave joined #ccl 2017-07-14T09:44:01Z hhdave quit (Ping timeout: 248 seconds) 2017-07-14T09:44:25Z hhdave joined #ccl 2017-07-14T10:08:40Z hhdave quit (Ping timeout: 255 seconds) 2017-07-14T10:34:48Z tfeb joined #ccl 2017-07-14T10:42:27Z hhdave joined #ccl 2017-07-14T11:10:58Z mrottenkolber joined #ccl 2017-07-14T12:16:00Z rumbler31 joined #ccl 2017-07-14T12:20:39Z rumbler31 quit (Remote host closed the connection) 2017-07-14T12:38:19Z tfeb quit (Remote host closed the connection) 2017-07-14T13:01:55Z tfeb joined #ccl 2017-07-14T13:02:15Z tfeb quit (Client Quit) 2017-07-14T14:17:11Z milanj joined #ccl 2017-07-14T14:37:11Z mrottenkolber quit (Ping timeout: 255 seconds) 2017-07-14T15:46:00Z tfeb joined #ccl 2017-07-14T15:56:51Z sabetts joined #ccl 2017-07-14T16:23:58Z tfeb quit (Remote host closed the connection) 2017-07-14T16:24:19Z tfeb joined #ccl 2017-07-14T16:24:46Z tfeb quit (Remote host closed the connection) 2017-07-14T16:31:49Z hhdave quit (Ping timeout: 268 seconds) 2017-07-14T17:07:36Z tfeb joined #ccl 2017-07-14T17:11:10Z tfeb quit (Remote host closed the connection) 2017-07-14T17:11:27Z tfeb joined #ccl 2017-07-14T17:11:56Z tfeb quit (Remote host closed the connection) 2017-07-14T17:21:25Z rumbler31 joined #ccl 2017-07-14T17:25:21Z tfeb joined #ccl 2017-07-14T17:25:48Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-14T17:42:09Z tfeb quit (Quit: Leaving...) 2017-07-14T18:16:52Z Merv_ quit (Remote host closed the connection) 2017-07-14T18:36:23Z sabetts quit (Ping timeout: 260 seconds) 2017-07-14T19:59:23Z Merv_ joined #ccl 2017-07-14T21:13:23Z pierpa joined #ccl 2017-07-14T21:21:58Z rumbler31 joined #ccl 2017-07-14T21:26:10Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-14T22:52:36Z rumbler31 joined #ccl 2017-07-14T23:16:58Z rumbler31 quit (Remote host closed the connection) 2017-07-14T23:28:21Z pierpa quit (Quit: Page closed) 2017-07-14T23:41:37Z mrottenkolber joined #ccl 2017-07-15T02:38:25Z mrottenkolber quit (Ping timeout: 246 seconds) 2017-07-15T03:13:04Z milanj quit (Quit: This computer has gone to sleep) 2017-07-15T04:17:50Z rumbler31 joined #ccl 2017-07-15T04:22:55Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-15T04:53:00Z milanj joined #ccl 2017-07-15T07:52:40Z milanj quit (Quit: This computer has gone to sleep) 2017-07-15T08:04:37Z Merv_ quit 2017-07-15T08:18:29Z rumbler31 joined #ccl 2017-07-15T08:22:47Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-15T11:18:23Z rumbler31 joined #ccl 2017-07-15T11:23:28Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-15T16:18:23Z billstclair: Is it a known thing that compiler/optimizers.lisp takes forever to compile in Windows 64-bit? 2017-07-15T16:18:35Z billstclair: I usually develop on Mac. 2017-07-15T18:29:56Z rme joined #ccl 2017-07-15T18:39:49Z pjb joined #ccl 2017-07-15T19:54:27Z pierpa joined #ccl 2017-07-15T22:43:22Z mrottenkolber joined #ccl 2017-07-15T23:29:21Z pjb quit (Remote host closed the connection) 2017-07-15T23:32:17Z pjb joined #ccl 2017-07-15T23:37:25Z pjb quit (Ping timeout: 258 seconds) 2017-07-16T01:08:05Z pierpa quit (Quit: Page closed) 2017-07-16T02:00:10Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-16T03:58:08Z xrme quit (Ping timeout: 180 seconds) 2017-07-16T03:58:38Z gbyers quit (Ping timeout: 255 seconds) 2017-07-16T03:59:46Z gendl quit (Remote host closed the connection) 2017-07-16T03:59:53Z xrme quit (Remote host closed the connection) 2017-07-16T10:00:03Z billstclair: The problem was that I’m not accustomed to using the Git repository for CCL. 2017-07-16T10:00:16Z billstclair: I was trying to compile the trunk sources with a 1.11 binary. 2017-07-16T10:00:26Z billstclair: git branch 1.11 origin/1.11; git checkout 1.11 2017-07-16T10:00:33Z billstclair: Then the build worked fine. 2017-07-16T10:22:25Z pjb joined #ccl 2017-07-16T11:33:59Z rumbler31 joined #ccl 2017-07-16T11:38:03Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-16T16:04:57Z pjb quit (Remote host closed the connection) 2017-07-16T16:11:02Z pjb joined #ccl 2017-07-16T16:17:12Z pjb quit (Remote host closed the connection) 2017-07-16T17:18:56Z pjb joined #ccl 2017-07-16T18:32:36Z hhdave joined #ccl 2017-07-16T18:36:57Z hhdave quit (Ping timeout: 240 seconds) 2017-07-16T18:37:06Z hhdave_ joined #ccl 2017-07-16T18:41:35Z hhdave_ quit (Ping timeout: 240 seconds) 2017-07-16T20:37:31Z hhdave joined #ccl 2017-07-16T21:15:14Z hhdave quit (Quit: hhdave) 2017-07-16T22:17:41Z gbyers joined #ccl 2017-07-16T22:18:30Z xrme joined #ccl 2017-07-16T22:19:16Z gendl joined #ccl 2017-07-16T22:30:23Z pierpa joined #ccl 2017-07-17T00:26:42Z pjb quit (Quit: good night.) 2017-07-17T00:49:46Z pierpa quit (Quit: Page closed) 2017-07-17T05:50:58Z consolers joined #ccl 2017-07-17T06:55:02Z consolers quit (Ping timeout: 240 seconds) 2017-07-17T06:55:25Z edgar-rft quit (Quit: edgar-rft) 2017-07-17T07:28:20Z Merv_ joined #ccl 2017-07-17T07:31:45Z Merv_ quit (Client Quit) 2017-07-17T08:05:21Z hhdave joined #ccl 2017-07-17T08:06:30Z hhdave quit (Client Quit) 2017-07-17T08:18:19Z hhdave joined #ccl 2017-07-17T08:22:57Z hhdave quit (Ping timeout: 240 seconds) 2017-07-17T09:12:12Z sixbitslacker joined #ccl 2017-07-17T11:20:14Z hhdave joined #ccl 2017-07-17T12:32:07Z mrottenkolber joined #ccl 2017-07-17T13:08:34Z pjb joined #ccl 2017-07-17T13:34:51Z rumbler31 joined #ccl 2017-07-17T16:38:48Z hhdave quit (Ping timeout: 240 seconds) 2017-07-17T16:58:44Z Intensity quit (Ping timeout: 258 seconds) 2017-07-17T17:09:17Z mrottenkolber quit (Ping timeout: 255 seconds) 2017-07-17T17:12:08Z Intensity joined #ccl 2017-07-17T18:11:13Z xrme: You can download free virtual machines from Microsoft for testing: https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/ 2017-07-17T18:36:28Z sabetts joined #ccl 2017-07-17T19:10:50Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-17T19:39:52Z rumbler31 joined #ccl 2017-07-17T20:35:47Z pierpa joined #ccl 2017-07-17T20:52:20Z mrottenkolber joined #ccl 2017-07-17T20:55:09Z hhdave joined #ccl 2017-07-17T21:35:22Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-17T21:48:07Z hhdave quit (Quit: hhdave) 2017-07-17T22:45:39Z rumbler31 joined #ccl 2017-07-17T22:50:40Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-17T23:03:07Z pierpa quit (Quit: Page closed) 2017-07-18T00:30:56Z sjl joined #ccl 2017-07-18T02:06:49Z gbyers_ joined #ccl 2017-07-18T02:07:00Z gz__ joined #ccl 2017-07-18T02:09:38Z xrme_ joined #ccl 2017-07-18T02:13:56Z xrme quit (*.net *.split) 2017-07-18T02:13:56Z gbyers quit (*.net *.split) 2017-07-18T02:13:57Z gz_ quit (*.net *.split) 2017-07-18T02:13:58Z gbyers_ is now known as gbyers 2017-07-18T02:13:59Z xrme_ is now known as xrme 2017-07-18T02:14:09Z gz__ is now known as gz_ 2017-07-18T02:30:22Z mrottenkolber quit (Ping timeout: 276 seconds) 2017-07-18T02:39:31Z sjl quit (Ping timeout: 240 seconds) 2017-07-18T02:39:45Z pjb quit (Remote host closed the connection) 2017-07-18T02:41:13Z pjb joined #ccl 2017-07-18T02:41:37Z pjb is now known as Guest5633 2017-07-18T06:00:35Z sabetts quit (Ping timeout: 240 seconds) 2017-07-18T08:03:20Z hhdave joined #ccl 2017-07-18T08:59:06Z Guest5633 is now known as pjb 2017-07-18T09:09:57Z copec quit (Ping timeout: 268 seconds) 2017-07-18T09:18:12Z copec joined #ccl 2017-07-18T10:58:12Z mrottenkolber joined #ccl 2017-07-18T12:16:30Z jdz quit (Ping timeout: 240 seconds) 2017-07-18T12:20:21Z jdz joined #ccl 2017-07-18T13:21:09Z rumbler31 joined #ccl 2017-07-18T13:45:29Z sjl joined #ccl 2017-07-18T14:17:35Z milanj joined #ccl 2017-07-18T15:09:01Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-18T16:40:07Z hhdave quit (Ping timeout: 255 seconds) 2017-07-18T17:12:12Z sabetts joined #ccl 2017-07-18T17:31:11Z sjl__ joined #ccl 2017-07-18T17:33:40Z sjl quit (Ping timeout: 255 seconds) 2017-07-18T18:11:03Z sjl__ is now known as sjl 2017-07-18T18:46:29Z deep-book-gk_ joined #ccl 2017-07-18T18:48:44Z deep-book-gk_ left #ccl 2017-07-18T19:08:31Z pjb quit (Remote host closed the connection) 2017-07-18T19:14:26Z Guest35075 joined #ccl 2017-07-18T19:20:17Z Guest35075 quit (Remote host closed the connection) 2017-07-18T19:40:42Z mrottenkolber joined #ccl 2017-07-18T20:44:09Z pjb` joined #ccl 2017-07-18T21:13:13Z eschatologist quit (Quit: ZNC 1.6.4+deb1 - http://znc.in) 2017-07-18T21:14:07Z eschatologist joined #ccl 2017-07-18T21:40:38Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-18T21:54:28Z pierpa joined #ccl 2017-07-18T22:13:00Z pjb` is now known as pjb 2017-07-18T22:51:35Z rumbler31 joined #ccl 2017-07-18T22:55:46Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-18T23:48:44Z pjb quit (Remote host closed the connection) 2017-07-18T23:49:51Z pjb joined #ccl 2017-07-18T23:54:38Z pjb quit (Remote host closed the connection) 2017-07-19T01:07:20Z pierpa quit (Quit: Page closed) 2017-07-19T01:16:30Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-19T02:01:07Z rumbler31 joined #ccl 2017-07-19T02:16:13Z rumbler31 quit (Remote host closed the connection) 2017-07-19T02:17:10Z rumbler31 joined #ccl 2017-07-19T02:21:34Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-19T02:47:35Z milanj quit (Quit: This computer has gone to sleep) 2017-07-19T03:17:59Z rumbler31 joined #ccl 2017-07-19T03:22:36Z rumbler31 quit (Ping timeout: 258 seconds) 2017-07-19T04:18:41Z rumbler31 joined #ccl 2017-07-19T04:23:01Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-19T04:25:03Z fUD joined #ccl 2017-07-19T05:34:12Z sabetts quit (Ping timeout: 260 seconds) 2017-07-19T06:21:14Z rumbler31 joined #ccl 2017-07-19T06:25:52Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-19T06:34:46Z fUD quit (Quit: Connection closed for inactivity) 2017-07-19T06:38:05Z sjl quit (Ping timeout: 240 seconds) 2017-07-19T06:38:52Z Intensity quit (Ping timeout: 258 seconds) 2017-07-19T06:49:20Z pjb joined #ccl 2017-07-19T07:05:21Z Intensity joined #ccl 2017-07-19T13:16:13Z rumbler31 joined #ccl 2017-07-19T13:17:43Z _rumbler31 joined #ccl 2017-07-19T13:17:53Z sjl__ joined #ccl 2017-07-19T13:21:05Z rumbler31 quit (Ping timeout: 248 seconds) 2017-07-19T13:55:40Z hhdave joined #ccl 2017-07-19T15:33:19Z mrottenkolber joined #ccl 2017-07-19T16:40:01Z hhdave quit (Ping timeout: 248 seconds) 2017-07-19T18:17:06Z pjb quit (Remote host closed the connection) 2017-07-19T18:22:38Z pjb joined #ccl 2017-07-19T18:27:40Z pjb quit (Ping timeout: 255 seconds) 2017-07-19T19:14:41Z edgar-rft joined #ccl 2017-07-19T19:25:44Z pjb joined #ccl 2017-07-19T20:00:57Z sjl__ is now known as sjl 2017-07-19T20:12:05Z tinyurl_comSLASH joined #ccl 2017-07-19T20:13:37Z tinyurl_comSLASH quit (K-Lined) 2017-07-19T20:19:07Z hhdave joined #ccl 2017-07-19T20:20:03Z hhdave quit (Client Quit) 2017-07-19T20:49:37Z mrottenkolber quit (Ping timeout: 248 seconds) 2017-07-19T21:06:36Z pierpa joined #ccl 2017-07-19T21:35:16Z itruslove quit (Remote host closed the connection) 2017-07-19T21:51:57Z _rumbler31 quit (Ping timeout: 240 seconds) 2017-07-19T23:31:41Z rumbler31 joined #ccl 2017-07-19T23:33:20Z rumbler31 quit (Client Quit) 2017-07-20T00:04:31Z pjb quit (Remote host closed the connection) 2017-07-20T00:05:50Z pjb joined #ccl 2017-07-20T00:08:31Z mrottenkolber joined #ccl 2017-07-20T00:09:40Z pjb quit (Remote host closed the connection) 2017-07-20T02:10:46Z itruslove joined #ccl 2017-07-20T02:22:47Z pierpa quit (Quit: Page closed) 2017-07-20T02:25:52Z mrottenkolber quit (Ping timeout: 268 seconds) 2017-07-20T06:17:13Z edgar-rft quit (Quit: edgar-rft) 2017-07-20T08:09:47Z hhdave joined #ccl 2017-07-20T08:12:28Z hhdave quit (Client Quit) 2017-07-20T08:14:32Z hhdave joined #ccl 2017-07-20T08:35:01Z hhdave_ joined #ccl 2017-07-20T08:35:29Z hhdave quit (Ping timeout: 240 seconds) 2017-07-20T08:35:30Z hhdave_ is now known as hhdave 2017-07-20T10:44:42Z pjb1 joined #ccl 2017-07-20T10:45:05Z pjb1 is now known as pjb 2017-07-20T12:31:29Z mrottenkolber joined #ccl 2017-07-20T15:44:46Z pjb quit (Ping timeout: 255 seconds) 2017-07-20T16:11:35Z pjb joined #ccl 2017-07-20T16:22:37Z pjb quit (Ping timeout: 255 seconds) 2017-07-20T16:45:05Z hhdave quit (Ping timeout: 240 seconds) 2017-07-20T17:05:31Z rumbler31 joined #ccl 2017-07-20T17:07:20Z mrottenkolber quit (Ping timeout: 260 seconds) 2017-07-20T17:41:43Z pjb joined #ccl 2017-07-20T18:21:22Z edgar-rft joined #ccl 2017-07-20T21:31:43Z pierpa joined #ccl 2017-07-20T22:15:49Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-20T23:16:46Z rumbler31 joined #ccl 2017-07-20T23:21:07Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-20T23:35:44Z pierpa quit (Quit: Page closed) 2017-07-20T23:55:25Z mrottenkolber joined #ccl 2017-07-21T00:45:48Z pjb quit (Ping timeout: 240 seconds) 2017-07-21T01:42:53Z pjb joined #ccl 2017-07-21T02:08:58Z pjb quit (Ping timeout: 255 seconds) 2017-07-21T02:43:58Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-21T07:09:50Z pjb joined #ccl 2017-07-21T08:13:17Z hhdave joined #ccl 2017-07-21T08:46:48Z rumbler31 joined #ccl 2017-07-21T08:51:49Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-21T09:15:34Z pjb quit (Ping timeout: 255 seconds) 2017-07-21T09:35:40Z pjb joined #ccl 2017-07-21T11:19:33Z BitPuffin|osx joined #ccl 2017-07-21T13:39:02Z mrottenkolber joined #ccl 2017-07-21T14:04:40Z rumbler31 joined #ccl 2017-07-21T14:22:05Z BitPuffin|osx quit (Ping timeout: 240 seconds) 2017-07-21T14:30:59Z pjb quit (Ping timeout: 255 seconds) 2017-07-21T14:39:55Z pjb joined #ccl 2017-07-21T14:42:29Z pjb quit (Remote host closed the connection) 2017-07-21T14:42:39Z pjb joined #ccl 2017-07-21T16:44:22Z hhdave quit (Ping timeout: 260 seconds) 2017-07-21T16:46:27Z mrottenkolber quit (Ping timeout: 255 seconds) 2017-07-21T19:37:16Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-21T20:06:26Z pierpa joined #ccl 2017-07-21T21:51:05Z mrottenkolber joined #ccl 2017-07-21T21:54:40Z sjl quit (Ping timeout: 255 seconds) 2017-07-21T21:55:37Z sjl joined #ccl 2017-07-21T23:26:28Z pjb quit (Ping timeout: 240 seconds) 2017-07-21T23:27:16Z pjb joined #ccl 2017-07-21T23:32:22Z pjb quit (Ping timeout: 255 seconds) 2017-07-22T00:15:35Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-22T00:23:51Z pierpa quit (Quit: Page closed) 2017-07-22T01:22:44Z edgar-rft quit (Read error: Connection reset by peer) 2017-07-22T01:26:27Z rme quit (Quit: rme) 2017-07-22T01:26:27Z rme quit (Quit: rme) 2017-07-22T01:58:04Z rme joined #ccl 2017-07-22T04:00:33Z sjl quit (Ping timeout: 248 seconds) 2017-07-22T07:42:48Z pjb joined #ccl 2017-07-22T09:53:19Z pjb quit (Ping timeout: 255 seconds) 2017-07-22T10:49:39Z pjb joined #ccl 2017-07-22T12:37:08Z mrottenkolber joined #ccl 2017-07-22T14:18:06Z sjl joined #ccl 2017-07-22T14:47:27Z rumbler31 joined #ccl 2017-07-22T15:42:56Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-22T15:56:16Z rumbler31 quit (Remote host closed the connection) 2017-07-22T16:56:53Z rumbler31 joined #ccl 2017-07-22T17:02:32Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-22T17:25:12Z mrottenkolber joined #ccl 2017-07-22T17:59:29Z rumbler31 joined #ccl 2017-07-22T18:03:49Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-22T18:19:45Z mrottenkolber quit (Read error: Connection reset by peer) 2017-07-22T19:00:10Z rumbler31 joined #ccl 2017-07-22T19:06:26Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-22T20:19:07Z pierpa joined #ccl 2017-07-22T21:04:39Z rumbler31 joined #ccl 2017-07-22T21:09:21Z rumbler31 quit (Ping timeout: 248 seconds) 2017-07-22T21:15:40Z rumbler31 joined #ccl 2017-07-22T21:21:35Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-22T21:44:06Z rumbler31 joined #ccl 2017-07-22T21:48:32Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-22T21:55:32Z rumbler31 joined #ccl 2017-07-22T22:00:05Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-22T22:48:50Z sjl quit (Ping timeout: 246 seconds) 2017-07-22T22:56:52Z rumbler31 joined #ccl 2017-07-22T23:01:27Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-22T23:08:50Z pjb: hi 2017-07-22T23:34:26Z deep-book-gk_ joined #ccl 2017-07-22T23:36:20Z deep-book-gk_ left #ccl 2017-07-22T23:36:45Z rme: hi 2017-07-22T23:57:24Z pierpa quit (Quit: Page closed) 2017-07-22T23:58:41Z rumbler31 joined #ccl 2017-07-23T00:03:22Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-23T00:09:23Z edgar-rft joined #ccl 2017-07-23T00:18:40Z sjl joined #ccl 2017-07-23T00:45:15Z pjb: rme: I was wondering about the status of ffigen4. I'm currently implementing a CoreMIDI layer with CFFI, because ffigen4 doesn't work on current systems. 2017-07-23T00:47:14Z pjb: From the sources, I've got the impression there's one module to generate the ccl ffi files, and the rest are very small patches to hook into gcc. I guess similar patches could be made to hook into clang; but then apple doesn't distribute its version of clang, so we'd want to do it without patches, using apple's llvm libraries. 2017-07-23T00:59:56Z rumbler31 joined #ccl 2017-07-23T01:05:00Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-23T02:01:43Z rumbler31 joined #ccl 2017-07-23T02:05:55Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-23T03:02:56Z rumbler31 joined #ccl 2017-07-23T03:08:12Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-23T04:04:40Z rumbler31 joined #ccl 2017-07-23T04:09:20Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-23T04:30:25Z sjl quit (Ping timeout: 248 seconds) 2017-07-23T04:38:49Z pjb quit (Ping timeout: 255 seconds) 2017-07-23T05:06:00Z rumbler31 joined #ccl 2017-07-23T05:10:25Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-23T05:35:10Z pjb joined #ccl 2017-07-23T06:07:00Z rumbler31 joined #ccl 2017-07-23T06:12:04Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-23T07:09:04Z rumbler31 joined #ccl 2017-07-23T07:14:13Z rumbler31 quit (Ping timeout: 268 seconds) 2017-07-23T07:14:13Z eschatologist quit (Ping timeout: 268 seconds) 2017-07-23T07:15:17Z eschatologist joined #ccl 2017-07-23T08:10:03Z rumbler31 joined #ccl 2017-07-23T08:15:53Z rumbler31 quit (Ping timeout: 268 seconds) 2017-07-23T09:11:34Z rumbler31 joined #ccl 2017-07-23T09:16:08Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-23T10:13:10Z rumbler31 joined #ccl 2017-07-23T10:18:06Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-23T11:14:11Z rumbler31 joined #ccl 2017-07-23T11:19:29Z rumbler31 quit (Ping timeout: 248 seconds) 2017-07-23T12:16:12Z rumbler31 joined #ccl 2017-07-23T12:20:57Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-23T13:17:13Z rumbler31 joined #ccl 2017-07-23T13:21:57Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-23T14:19:18Z rumbler31 joined #ccl 2017-07-23T14:24:46Z rumbler31 quit (Ping timeout: 276 seconds) 2017-07-23T15:20:20Z rumbler31 joined #ccl 2017-07-23T15:25:32Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-23T15:34:58Z doctor joined #ccl 2017-07-23T15:35:20Z doctor is now known as Guest76420 2017-07-23T15:36:47Z Guest76420 is now known as dre 2017-07-23T16:22:23Z rumbler31 joined #ccl 2017-07-23T16:28:49Z rumbler31 quit (Ping timeout: 248 seconds) 2017-07-23T16:47:46Z dre quit (Ping timeout: 255 seconds) 2017-07-23T16:48:16Z pjb quit (Ping timeout: 255 seconds) 2017-07-23T16:51:13Z dre joined #ccl 2017-07-23T16:51:23Z pjb joined #ccl 2017-07-23T17:08:25Z billstclair: ffigen is convenient, but it’s CCL-specific. I use CFFI for most of my projects. I have not personally used its .h file groveller, but it appears to work, as some of the libraries I have used DO use it. 2017-07-23T17:32:04Z pjb: Well, I assume ffigen is better for Objective-C bridge stuff. It's true that CoreStuff C API, cffi seems to be enough. 2017-07-23T17:44:56Z dre quit (Remote host closed the connection) 2017-07-23T20:36:05Z pierpa joined #ccl 2017-07-23T21:16:27Z hhdave joined #ccl 2017-07-23T21:54:28Z hhdave quit (Quit: hhdave) 2017-07-24T00:28:28Z pierpa quit (Quit: Page closed) 2017-07-24T00:35:46Z pjb quit (Ping timeout: 255 seconds) 2017-07-24T00:55:51Z rumbler31 joined #ccl 2017-07-24T00:57:03Z _rumbler31 joined #ccl 2017-07-24T01:00:31Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-24T01:01:28Z _rumbler31 quit (Ping timeout: 255 seconds) 2017-07-24T01:32:30Z pjb joined #ccl 2017-07-24T01:50:42Z sjl joined #ccl 2017-07-24T01:53:37Z sjl quit (Client Quit) 2017-07-24T01:58:46Z rumbler31 joined #ccl 2017-07-24T01:59:01Z pjb quit (Ping timeout: 255 seconds) 2017-07-24T02:04:17Z rumbler31 quit (Ping timeout: 248 seconds) 2017-07-24T02:06:57Z sjl joined #ccl 2017-07-24T02:35:08Z rumbler31 joined #ccl 2017-07-24T02:40:57Z rumbler31 quit (Ping timeout: 268 seconds) 2017-07-24T03:38:06Z rumbler31 joined #ccl 2017-07-24T03:42:58Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-24T04:14:36Z sjl quit (Ping timeout: 260 seconds) 2017-07-24T04:39:54Z rumbler31 joined #ccl 2017-07-24T04:44:28Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-24T05:31:18Z pjb joined #ccl 2017-07-24T05:40:37Z rumbler31 joined #ccl 2017-07-24T05:45:08Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-24T06:42:42Z rumbler31 joined #ccl 2017-07-24T06:47:27Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-24T07:43:36Z rumbler31 joined #ccl 2017-07-24T07:48:17Z rumbler31 quit (Ping timeout: 248 seconds) 2017-07-24T07:59:51Z hhdave joined #ccl 2017-07-24T08:09:20Z hhdave quit (Ping timeout: 260 seconds) 2017-07-24T08:09:48Z hhdave joined #ccl 2017-07-24T08:31:28Z pjb quit (Ping timeout: 240 seconds) 2017-07-24T08:45:45Z rumbler31 joined #ccl 2017-07-24T08:50:22Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-24T09:08:27Z pjb joined #ccl 2017-07-24T09:47:14Z rumbler31 joined #ccl 2017-07-24T09:52:07Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-24T13:05:28Z pjb quit (Ping timeout: 255 seconds) 2017-07-24T14:02:20Z pjb joined #ccl 2017-07-24T14:26:16Z pjb quit (Ping timeout: 246 seconds) 2017-07-24T14:36:28Z rumbler31 joined #ccl 2017-07-24T15:18:43Z pjb joined #ccl 2017-07-24T15:31:37Z sjl joined #ccl 2017-07-24T16:36:17Z hhdave quit (Ping timeout: 248 seconds) 2017-07-24T20:10:45Z pierpa joined #ccl 2017-07-24T21:35:02Z _rumbler31 joined #ccl 2017-07-24T21:36:12Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-24T21:39:23Z _rumbler31 quit (Ping timeout: 240 seconds) 2017-07-24T22:34:45Z rumbler31 joined #ccl 2017-07-24T22:59:16Z rumbler31 quit (Remote host closed the connection) 2017-07-24T23:48:52Z pierpa quit (Quit: Page closed) 2017-07-25T01:25:19Z pjb quit (Ping timeout: 255 seconds) 2017-07-25T01:51:07Z pjb joined #ccl 2017-07-25T02:12:34Z pjb quit (Ping timeout: 255 seconds) 2017-07-25T04:40:30Z sjl quit (Ping timeout: 240 seconds) 2017-07-25T05:47:50Z Intensity quit (Ping timeout: 258 seconds) 2017-07-25T05:48:58Z Intensity joined #ccl 2017-07-25T06:23:11Z hhdave joined #ccl 2017-07-25T06:23:17Z hhdave quit (Client Quit) 2017-07-25T08:01:51Z hhdave joined #ccl 2017-07-25T10:07:20Z pjb joined #ccl 2017-07-25T11:03:50Z jdz quit (Ping timeout: 240 seconds) 2017-07-25T11:09:51Z jdz joined #ccl 2017-07-25T12:00:13Z mrottenkolber joined #ccl 2017-07-25T12:17:46Z pjb quit (Ping timeout: 255 seconds) 2017-07-25T13:14:56Z pjb joined #ccl 2017-07-25T13:39:34Z ccl-logbot joined #ccl 2017-07-25T13:39:34Z 2017-07-25T13:39:34Z names: ccl-logbot pjb mrottenkolber jdz hhdave Intensity eschatologist edgar-rft rme itruslove copec xrme gz_ gbyers sixbitslacker gendl jackdaniel sigjuice adlai swflint kini |3b| billstclair dustinm` fiddlerwoaroof fe[nl]ix Blkt_ @ChanServ gko brucem alms_clozure carvite 2017-07-25T14:21:20Z rumbler31 joined #ccl 2017-07-25T15:35:07Z tfeb joined #ccl 2017-07-25T16:03:47Z tfeb quit (Remote host closed the connection) 2017-07-25T16:04:00Z tfeb joined #ccl 2017-07-25T16:04:35Z tfeb quit (Remote host closed the connection) 2017-07-25T16:08:27Z tfeb joined #ccl 2017-07-25T16:08:32Z tfeb quit (Remote host closed the connection) 2017-07-25T16:13:38Z tfeb joined #ccl 2017-07-25T16:13:44Z tfeb quit (Client Quit) 2017-07-25T16:36:01Z hhdave quit (Ping timeout: 246 seconds) 2017-07-25T16:39:55Z sjl joined #ccl 2017-07-25T18:06:31Z pjb quit (Ping timeout: 255 seconds) 2017-07-25T18:57:52Z sjl quit (Ping timeout: 255 seconds) 2017-07-25T19:03:24Z pjb joined #ccl 2017-07-25T19:26:13Z pjb quit (Ping timeout: 255 seconds) 2017-07-25T20:52:44Z pjb joined #ccl 2017-07-25T22:00:35Z pierpa joined #ccl 2017-07-25T22:55:47Z rumbler31 quit (Ping timeout: 260 seconds) 2017-07-26T00:06:58Z mrottenkolber quit (Ping timeout: 255 seconds) 2017-07-26T00:10:49Z deep-book-gk_ joined #ccl 2017-07-26T00:13:07Z deep-book-gk_ left #ccl 2017-07-26T00:36:01Z sjl joined #ccl 2017-07-26T00:46:10Z pjb quit (Ping timeout: 255 seconds) 2017-07-26T00:50:34Z pjb joined #ccl 2017-07-26T00:55:34Z pjb quit (Ping timeout: 255 seconds) 2017-07-26T02:40:32Z pierpa quit (Quit: Page closed) 2017-07-26T05:01:41Z deep-book-gk_ joined #ccl 2017-07-26T05:02:57Z deep-book-gk_ quit (K-Lined) 2017-07-26T05:14:09Z sjl quit (Ping timeout: 248 seconds) 2017-07-26T07:25:30Z pjb joined #ccl 2017-07-26T09:09:59Z pjb quit (Read error: Connection reset by peer) 2017-07-26T09:10:02Z pjb` joined #ccl 2017-07-26T09:51:07Z pjb` quit (Ping timeout: 255 seconds) 2017-07-26T09:54:01Z pjb` joined #ccl 2017-07-26T09:58:08Z mrottenkolber joined #ccl 2017-07-26T10:09:16Z pjb` is now known as pjb 2017-07-26T11:03:53Z mrottenkolber quit (Ping timeout: 255 seconds) 2017-07-26T11:42:19Z mrottenkolber joined #ccl 2017-07-26T11:52:48Z pjb quit (Ping timeout: 240 seconds) 2017-07-26T11:54:08Z pjb joined #ccl 2017-07-26T13:25:46Z rumbler31 joined #ccl 2017-07-26T14:24:01Z pjb quit (Ping timeout: 276 seconds) 2017-07-26T14:54:20Z sjl joined #ccl 2017-07-26T15:00:01Z pjb joined #ccl 2017-07-26T15:19:52Z hhdave joined #ccl 2017-07-26T15:31:28Z edgar-rft quit (Quit: edgar-rft) 2017-07-26T16:24:25Z mrottenkolber quit (Ping timeout: 255 seconds) 2017-07-26T17:18:02Z hhdave quit (Read error: Connection reset by peer) 2017-07-26T17:18:31Z hhdave joined #ccl 2017-07-26T17:21:04Z hhdave quit (Read error: Connection reset by peer) 2017-07-26T17:21:46Z hhdave joined #ccl 2017-07-26T17:22:24Z hhdave quit (Read error: Connection reset by peer) 2017-07-26T17:23:25Z hhdave joined #ccl 2017-07-26T17:51:40Z mrottenkolber joined #ccl 2017-07-26T20:37:44Z sjl__ joined #ccl 2017-07-26T20:39:04Z sjl quit (Ping timeout: 276 seconds) 2017-07-26T20:45:52Z pierpa joined #ccl 2017-07-26T21:45:55Z sjl__ is now known as sjl 2017-07-26T21:56:03Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-26T22:16:44Z hhdave quit (Quit: hhdave) 2017-07-26T23:22:35Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-26T23:51:19Z rumbler31 joined #ccl 2017-07-26T23:55:43Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-27T01:26:40Z pjb quit (Ping timeout: 255 seconds) 2017-07-27T02:23:21Z pjb joined #ccl 2017-07-27T02:38:27Z pierpa quit (Quit: Page closed) 2017-07-27T04:01:45Z sjl__ joined #ccl 2017-07-27T04:02:49Z sjl quit (Ping timeout: 255 seconds) 2017-07-27T04:45:55Z sjl__ quit (Ping timeout: 276 seconds) 2017-07-27T06:00:59Z sjl__ joined #ccl 2017-07-27T06:05:57Z sjl__ quit (Ping timeout: 240 seconds) 2017-07-27T06:17:30Z edgar-rft joined #ccl 2017-07-27T08:02:37Z hhdave joined #ccl 2017-07-27T08:33:02Z hhdave quit (Ping timeout: 258 seconds) 2017-07-27T10:03:49Z hhdave joined #ccl 2017-07-27T10:15:38Z mrottenkolber joined #ccl 2017-07-27T13:53:48Z rumbler31 joined #ccl 2017-07-27T15:20:28Z pjb quit (Ping timeout: 240 seconds) 2017-07-27T16:14:17Z xrme quit (Ping timeout: 180 seconds) 2017-07-27T16:16:28Z sjl__ joined #ccl 2017-07-27T16:23:22Z sjl joined #ccl 2017-07-27T16:24:33Z sjl__ quit (Ping timeout: 248 seconds) 2017-07-27T16:42:25Z hhdave quit (Ping timeout: 255 seconds) 2017-07-27T17:02:44Z pjb joined #ccl 2017-07-27T18:18:39Z rumbler31 quit (Ping timeout: 268 seconds) 2017-07-27T19:19:45Z clintm joined #ccl 2017-07-27T21:20:11Z rumbler31 joined #ccl 2017-07-27T22:06:30Z clintm quit (Quit: ERC (IRC client for Emacs 25.1.1)) 2017-07-27T22:07:23Z clintm joined #ccl 2017-07-27T22:41:28Z copec quit (Excess Flood) 2017-07-27T22:45:38Z copec joined #ccl 2017-07-27T22:52:35Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-27T23:21:09Z pierpa joined #ccl 2017-07-27T23:35:28Z rumbler31 quit (Ping timeout: 255 seconds) 2017-07-28T00:30:21Z rumbler31 joined #ccl 2017-07-28T00:34:37Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-28T00:38:58Z rumbler31 joined #ccl 2017-07-28T01:42:13Z clintm quit (Remote host closed the connection) 2017-07-28T02:03:08Z pjb quit (Remote host closed the connection) 2017-07-28T02:45:17Z pierpa quit (Quit: Page closed) 2017-07-28T03:38:21Z sjl__ joined #ccl 2017-07-28T03:40:40Z sjl quit (Ping timeout: 276 seconds) 2017-07-28T05:56:19Z clintm joined #ccl 2017-07-28T08:08:05Z hhdave joined #ccl 2017-07-28T08:11:41Z hhdave_ joined #ccl 2017-07-28T08:12:19Z hhdave quit (Ping timeout: 240 seconds) 2017-07-28T08:12:20Z hhdave_ is now known as hhdave 2017-07-28T08:38:42Z rumbler31 quit (Remote host closed the connection) 2017-07-28T08:40:19Z sjl__ quit (Ping timeout: 240 seconds) 2017-07-28T08:45:16Z sjl__ joined #ccl 2017-07-28T09:32:39Z pjb joined #ccl 2017-07-28T09:47:15Z mrottenkolber joined #ccl 2017-07-28T10:52:44Z clintm quit (Remote host closed the connection) 2017-07-28T12:58:53Z edgar-rft quit (Quit: edgar-rft) 2017-07-28T13:22:18Z rumbler31 joined #ccl 2017-07-28T13:50:27Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-28T16:12:20Z sjl__ is now known as sjl 2017-07-28T16:32:49Z hhdave quit (Ping timeout: 240 seconds) 2017-07-28T16:40:10Z sjl quit (Ping timeout: 240 seconds) 2017-07-28T16:48:46Z sjl joined #ccl 2017-07-28T17:01:27Z rumbler31 quit (Ping timeout: 240 seconds) 2017-07-28T17:22:01Z clintm` joined #ccl 2017-07-28T17:25:29Z mrottenkolber joined #ccl 2017-07-28T18:24:52Z clintm` quit (Remote host closed the connection) 2017-07-28T18:25:59Z clintm joined #ccl 2017-07-28T18:35:38Z clintm quit (Remote host closed the connection) 2017-07-28T19:16:50Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-28T20:48:16Z pierpa joined #ccl 2017-07-28T21:08:09Z BitPuffin|osx joined #ccl 2017-07-29T02:30:42Z pierpa quit (Quit: Page closed) 2017-07-29T04:21:22Z deep-book-gk_ joined #ccl 2017-07-29T04:24:05Z deep-book-gk_ left #ccl 2017-07-29T04:26:07Z BitPuffin|osx quit (Ping timeout: 260 seconds) 2017-07-29T04:41:08Z pjb quit (Ping timeout: 240 seconds) 2017-07-29T05:38:56Z pjb joined #ccl 2017-07-29T06:07:01Z pjb quit (Ping timeout: 255 seconds) 2017-07-29T10:53:50Z mrottenkolber joined #ccl 2017-07-29T13:11:54Z BitPuffin|osx joined #ccl 2017-07-29T13:25:13Z BitPuffin|osx quit (Remote host closed the connection) 2017-07-29T13:26:41Z pjb joined #ccl 2017-07-29T13:26:43Z BitPuffin|osx joined #ccl 2017-07-29T18:46:31Z pjb quit (Ping timeout: 246 seconds) 2017-07-29T19:12:33Z pjb joined #ccl 2017-07-29T20:20:46Z mrottenkolber quit (Remote host closed the connection) 2017-07-29T20:54:00Z BitPuffin joined #ccl 2017-07-29T22:03:24Z pierpa joined #ccl 2017-07-29T23:35:24Z edgar-rft joined #ccl 2017-07-29T23:37:50Z BitPuffin|osx quit (Ping timeout: 240 seconds) 2017-07-30T00:07:31Z deep-book-gk_ joined #ccl 2017-07-30T00:07:55Z deep-book-gk_ left #ccl 2017-07-30T02:00:48Z pjb quit (Ping timeout: 240 seconds) 2017-07-30T02:05:31Z BitPuffin quit (Remote host closed the connection) 2017-07-30T02:21:53Z pierpa quit (Quit: Page closed) 2017-07-30T05:02:42Z goosnargh joined #ccl 2017-07-30T11:29:03Z pjb joined #ccl 2017-07-30T11:33:47Z goosnargh quit (Ping timeout: 240 seconds) 2017-07-30T11:58:19Z BitPuffin|osx joined #ccl 2017-07-30T12:30:24Z goosnargh joined #ccl 2017-07-30T12:36:07Z goosnargh quit (Ping timeout: 246 seconds) 2017-07-30T13:21:35Z goosnargh joined #ccl 2017-07-30T13:25:48Z goosnargh quit (Ping timeout: 240 seconds) 2017-07-30T14:15:27Z BitPuffin|osx quit (Ping timeout: 240 seconds) 2017-07-30T14:22:16Z goosnargh joined #ccl 2017-07-30T14:26:27Z goosnargh quit (Ping timeout: 240 seconds) 2017-07-30T15:22:58Z goosnargh joined #ccl 2017-07-30T15:27:29Z goosnargh quit (Ping timeout: 248 seconds) 2017-07-30T15:53:32Z mrottenkolber joined #ccl 2017-07-30T16:08:06Z BitPuffin|osx joined #ccl 2017-07-30T16:23:40Z goosnargh joined #ccl 2017-07-30T16:28:32Z goosnargh quit (Ping timeout: 260 seconds) 2017-07-30T16:35:47Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-07-30T17:24:21Z goosnargh joined #ccl 2017-07-30T17:29:47Z goosnargh quit (Ping timeout: 260 seconds) 2017-07-30T17:49:15Z goosnargh joined #ccl 2017-07-30T18:28:21Z goosnargh left #ccl 2017-07-30T18:52:20Z mrottenkolber joined #ccl 2017-07-30T21:31:45Z deep-book-gk_ joined #ccl 2017-07-30T21:31:56Z deep-book-gk_ left #ccl 2017-07-30T22:08:39Z pierpa joined #ccl 2017-07-30T22:36:08Z pjb quit (Ping timeout: 240 seconds) 2017-07-30T22:43:32Z pjb joined #ccl 2017-07-30T23:00:20Z pierpa quit (Ping timeout: 260 seconds) 2017-07-30T23:22:56Z mrottenkolber quit (Ping timeout: 260 seconds) 2017-07-31T00:29:49Z pierpa joined #ccl 2017-07-31T01:01:05Z eschatologist quit (Ping timeout: 268 seconds) 2017-07-31T01:18:43Z eschatologist joined #ccl 2017-07-31T01:21:01Z rumbler31 joined #ccl 2017-07-31T01:26:25Z pierpa quit (Quit: Page closed) 2017-07-31T01:36:00Z deep-book-gk joined #ccl 2017-07-31T01:36:39Z deep-book-gk left #ccl 2017-07-31T02:13:36Z rumbler31 quit (Remote host closed the connection) 2017-07-31T02:57:36Z BitPuffin|osx quit (Ping timeout: 260 seconds) 2017-07-31T05:58:56Z GK1wmSU joined #ccl 2017-07-31T06:00:07Z GK1wmSU left #ccl 2017-07-31T06:12:32Z _GK1wmSU joined #ccl 2017-07-31T06:15:00Z _GK1wmSU left #ccl 2017-07-31T08:20:48Z pjb quit (Ping timeout: 240 seconds) 2017-07-31T08:23:42Z hhdave joined #ccl 2017-07-31T08:47:59Z pjb joined #ccl 2017-07-31T09:05:19Z pjb quit (Ping timeout: 246 seconds) 2017-07-31T10:08:31Z macdavid joined #ccl 2017-07-31T10:22:02Z macdavid quit (Remote host closed the connection) 2017-07-31T10:22:04Z mrottenkolber joined #ccl 2017-07-31T10:24:15Z macdavid313 joined #ccl 2017-07-31T10:49:17Z tfeb joined #ccl 2017-07-31T11:02:24Z macdavid313 quit (Remote host closed the connection) 2017-07-31T11:16:42Z macdavid313 joined #ccl 2017-07-31T11:20:54Z macdavid313 quit (Remote host closed the connection) 2017-07-31T11:25:47Z BitPuffin|osx joined #ccl 2017-07-31T11:27:40Z macdavid313 joined #ccl 2017-07-31T12:06:31Z tfeb quit (Remote host closed the connection) 2017-07-31T12:06:49Z tfeb joined #ccl 2017-07-31T12:07:17Z tfeb quit (Remote host closed the connection) 2017-07-31T12:24:25Z edgar-rft quit (Quit: edgar-rft) 2017-07-31T12:28:58Z pjb joined #ccl 2017-07-31T12:33:06Z tfeb joined #ccl 2017-07-31T13:17:46Z tfeb quit (Remote host closed the connection) 2017-07-31T13:18:03Z tfeb joined #ccl 2017-07-31T13:18:31Z tfeb quit (Remote host closed the connection) 2017-07-31T13:22:22Z tfeb joined #ccl 2017-07-31T13:22:31Z tfeb quit (Remote host closed the connection) 2017-07-31T13:41:08Z pjb quit (Ping timeout: 240 seconds) 2017-07-31T13:59:13Z tfeb joined #ccl 2017-07-31T14:08:49Z rumbler31 joined #ccl 2017-07-31T14:08:58Z rumbler31 quit (Remote host closed the connection) 2017-07-31T14:09:43Z rumbler31 joined #ccl 2017-07-31T14:24:05Z pjb joined #ccl 2017-07-31T15:04:10Z macdavid_ joined #ccl 2017-07-31T15:06:57Z macdavid313 quit (Ping timeout: 240 seconds) 2017-07-31T15:08:36Z macdavid313 joined #ccl 2017-07-31T15:09:29Z macdavid_ quit (Remote host closed the connection) 2017-07-31T15:29:41Z tfeb quit (Remote host closed the connection) 2017-07-31T15:30:03Z tfeb joined #ccl 2017-07-31T15:30:30Z tfeb quit (Read error: Connection reset by peer) 2017-07-31T15:52:28Z macdavid_ joined #ccl 2017-07-31T15:53:07Z macdavid313 quit (Read error: Connection reset by peer) 2017-07-31T15:53:22Z macdavid313 joined #ccl 2017-07-31T15:54:05Z macdavid_ quit (Remote host closed the connection) 2017-07-31T15:56:26Z macdavid313 quit (Client Quit) 2017-07-31T15:59:16Z ekinmur joined #ccl 2017-07-31T16:02:48Z pjb quit (Ping timeout: 240 seconds) 2017-07-31T16:03:07Z pjb joined #ccl 2017-07-31T16:39:13Z tfeb joined #ccl 2017-07-31T16:40:34Z hhdave quit (Ping timeout: 276 seconds) 2017-07-31T18:12:21Z tfeb quit (Remote host closed the connection) 2017-07-31T19:37:39Z phoe_ joined #ccl 2017-07-31T19:37:52Z phoe_: (require :cocoa-application) on macOS El Capitan: http://paste.lisp.org/display/352178 2017-07-31T19:38:51Z phoe_: I need help with this - I have no idea what exploded here. 2017-07-31T19:44:15Z phoe_: Actually, this works if I run this from terminal. 2017-07-31T19:44:28Z phoe_: But crashes if I do it from spacemacs, from example. 2017-07-31T19:44:37Z phoe_: I actually tried to load McCLIM's beagle backend and ran into this. 2017-07-31T19:48:40Z phoe_: Okay - I restarted my whole Lisp image and got it to run further. Which is still bad - right after ;Loading #P"ccl:cocoa-ide;fasls;xinspector.dx64fsl.newest"... CCL completely crashes. 2017-07-31T19:53:48Z phoe_: HAH! I know why it crashes! 2017-07-31T19:53:56Z phoe_: I encountered this bug before - and it was on Windows. 2017-07-31T19:55:07Z phoe_: There's an error in another thread and that thread wants to capture "Shared Terminal Input" or whatever it is. 2017-07-31T19:55:20Z phoe_: It succeeds - if CCL is run from terminal. 2017-07-31T19:55:35Z phoe_: If CCL is run from a graphical application like emacs or Windows Explorer - crash. 2017-07-31T20:02:20Z pjb: phoe_: interesting. 2017-07-31T20:02:45Z pjb: I get the same here. 2017-07-31T20:02:53Z phoe_: pjb: ah-ha! 2017-07-31T20:03:00Z phoe_: Time to file a bug report. 2017-07-31T20:03:03Z phoe_: ........tomorrow. 2017-07-31T20:03:42Z pjb: But in general, I do: (require :cocoa) 2017-07-31T20:03:50Z pjb: and (require :build-application) 2017-07-31T20:05:16Z pjb: If you call (require :cocoa-application) without having called (require :cocoa) it seems to work, and compiles and saves the application /usr/local/src/ccl-1.11/Clozure CL64.app/ 2017-07-31T20:05:44Z pjb: If you load libraries such as McCLIM, the backend will have loaded :cocoa already, so it will break. 2017-07-31T20:06:15Z phoe_: I see. 2017-07-31T20:06:59Z pjb: So you should do like I do, (require :cocoa) (ql:quickload …) (require :build-application) and (ccl::build-application …) 2017-07-31T20:07:13Z phoe_: Let me try. 2017-07-31T20:07:21Z pjb: (require :cocoa-application) is to build and save a pristine Closure CL.app 2017-07-31T20:07:31Z phoe_: I see. Thanks. 2017-07-31T20:07:43Z phoe_: ... 2017-07-31T20:08:14Z phoe_: (require :cocoa) right after starting a quicklisped CCL is enough to crash it. 2017-07-31T20:08:32Z pjb: No good. Here it works. 2017-07-31T20:08:42Z pjb: Even in slime. 2017-07-31T20:08:58Z pjb: Do you have write access rights to the ccl directory? 2017-07-31T20:09:11Z pjb: You need them to compile stuff when (require :cocoa). 2017-07-31T20:09:30Z phoe_: I do. 2017-07-31T20:09:33Z phoe_: It's in /opt/ccl/ 2017-07-31T20:09:36Z pjb: ok. 2017-07-31T20:09:42Z phoe_: and my user owns the ccl dir and everything inside. 2017-07-31T20:11:12Z pjb: What does (require :cocoa) say? 2017-07-31T20:11:45Z phoe_: It spits out a lot of compilation output, then it... seems to return the values. 2017-07-31T20:11:54Z phoe_: :COCOA ("IDE-BUNDLE" "OBJC-PACKAGE" ...) 2017-07-31T20:12:00Z phoe_: And right after that, it crashes. 2017-07-31T20:13:06Z phoe_: I need to run to sleep now. I will debug more from home later. 2017-07-31T20:14:26Z pjb: ok. Good night! 2017-07-31T20:15:39Z phoe_: I'm debugging from a Lenovo hackintosh but I don't think it matters much in this case since I have a vanilla kernel and Intel CPU/GPU. 2017-07-31T20:19:36Z pjb: Probably not. Intel processor should do it. 2017-07-31T20:23:47Z gko quit (Read error: Connection reset by peer) 2017-07-31T20:30:28Z gko joined #ccl 2017-07-31T20:57:13Z BitPuffin joined #ccl 2017-07-31T21:05:58Z mrottenkolber quit (Ping timeout: 246 seconds) 2017-07-31T21:37:10Z ekinmur quit (Quit: Textual IRC Client: www.textualapp.com) 2017-07-31T21:49:43Z rumbler31 quit (Ping timeout: 246 seconds) 2017-07-31T22:43:03Z rumbler31 joined #ccl 2017-07-31T22:47:27Z rumbler31 quit (Ping timeout: 258 seconds) 2017-07-31T22:48:04Z edgar-rft joined #ccl 2017-07-31T22:53:45Z pierpa joined #ccl 2017-07-31T23:18:50Z tfeb joined #ccl 2017-07-31T23:58:18Z https_GK1wmSU joined #ccl