💾 Archived View for gemini.ctrl-c.club › ~phoebos › logs › freenode-kisslinux-2020-06-09.txt captured on 2021-12-17 at 13:26:06.
-=-=-=-=-=-=-
2020-06-09T03:10:12 #kisslinux <dilynm> Re neovim failing: https://github.com/LuaJIT/LuaJIT/issues/453#issuecomment-438033796 seemed promising but doesn't work for me 2020-06-09T03:17:36 #kisslinux <dilynm> Re: re: if you just use -lc++ it magically links correctly 2020-06-09T03:19:55 #kisslinux <dilynm> Aaaaaannnddddd it works 2020-06-09T03:20:15 #kisslinux <dilynm> Now to fix the Luajit CMake file and we'll never ever ever have this problem again 2020-06-09T07:07:52 #kisslinux <dylan02> djt3[m]: I use vim with a few plugins. 2020-06-09T09:29:01 #kisslinux <depsterr> Hey, I'm having a bit of trouble and I'm wondering if anyone would be willing to help :) 2020-06-09T09:29:29 #kisslinux <depsterr> First is a minor issue, I don't have man installed? I installed the man pages of the community repo, yet the man binary itself isn't present 2020-06-09T09:34:26 #kisslinux <depsterr> Second of is a bit worse, I can't get xorg to work properly. At first I could only launch as root unless I changed the permissions of `/dev/dri/card0`, it would boot into my wm (I tried both sowm and by dwm build) it would freeze, I'd be unable to go into a tty, open a terminal, move the mouse or anything else. It also doesn't seem to have ran any 2020-06-09T09:34:26 #kisslinux <depsterr> autostart stuff in dwm. After rebuilding libinput and xf86-input-libinput X no longer starts (even as root) and errors out saying `_FontTransOpen: Unable to Parse address ${prefix}/share/fonts/X11/misc/`, this directory does indeed not exist, but what confuses me is that it worked previously. I do have fonts installed in /usr/share/fonts and 2020-06-09T09:34:27 #kisslinux <depsterr> /usr/share/fonts/TTF, but xorg doesn't seem to care for those. Anyone got any ideas? 2020-06-09T09:37:11 #kisslinux <depsterr> It seems you can set fontpath somehow? However you'd need `mkfontdir`, a program I've never heard of before 2020-06-09T09:40:51 #kisslinux <kisslinuxuser> for xorg maybe: https://k1ss.org/faq#9.1 2020-06-09T09:42:58 #kisslinux <depsterr> that doesn't seem to be the case, I'm using intel drivers, so I don't load any kernel modules for video 2020-06-09T09:49:59 #kisslinux <depsterr> I find it really weird, since `fc-list` successfully lists my fonts 2020-06-09T09:50:04 #kisslinux <depsterr> but xorg doesn't seem to like it 2020-06-09T10:19:27 #kisslinux <depsterr> I found someone who experienced the same error as me, 4 years ago 2020-06-09T10:19:28 #kisslinux <depsterr> https://unix.stackexchange.com/questions/272742/the-x-windows-font-path-error-occurs-what-should-i-do-to-compile#272744 2020-06-09T10:19:48 #kisslinux <depsterr> it seems like it might be looking at `${prefix}/share/fonts/X11/misc/` because of the build script failing? 2020-06-09T10:19:55 #kisslinux <depsterr> I'm going to rebuild xorg and check back 2020-06-09T10:25:05 #kisslinux <depsterr> didn't work 2020-06-09T10:39:11 #kisslinux <mcpcpc[m]> would someone mind checking over this dhcpcd article https://clbin.com/goI1o for accuracy (specifically the static ip setting section) 2020-06-09T11:07:43 #kisslinux <mcpcpc[m]> depsterr: regarding the man pages, you can also use mandoc from the main repo. 2020-06-09T13:21:04 #kisslinux <dilynm> periish: can you add "${CXX:-c++}" to the make line in NSS build? 2020-06-09T13:23:59 #kisslinux <dilynm> jk; didn't work... 2020-06-09T16:20:58 #kisslinux <periish> Hola 2020-06-09T16:21:30 #kisslinux <periish> Anyone have any clue if it's possible to introduce history editing into `ash` like in bash? 2020-06-09T16:23:53 #kisslinux <periish> Almost got zsh-style autocorrect done 2020-06-09T16:24:05 #kisslinux <periish> Just need a way to edit the first line of the prompt 2020-06-09T16:24:15 #kisslinux <periish> not prompt 2020-06-09T16:30:27 #kisslinux <ectlunya> depsterr: can you send the full xorg log? Usually its in XDG_DATA_HOME 2020-06-09T16:32:19 #kisslinux <ectlunya> if there are still problems with the fonts you can add to the font path using xset which is in the main repos 2020-06-09T19:06:22 #kisslinux <dilynm> Looks like nodejs needs libatomic. The package is not... Pretty 2020-06-09T19:06:39 #kisslinux <dilynm> konimex: 2020-06-09T19:35:04 #kisslinux <E5ten> dilynm: doesn't compiler-rt provide atomic symbols if you disable some cmake option that excludes them? 2020-06-09T19:35:12 #kisslinux <E5ten> or does it like specifically do -latomic or something 2020-06-09T19:35:23 #kisslinux <dilynm> It specifically links to -latomic 2020-06-09T19:35:56 #kisslinux <dilynm> Because node devs wanted to fix builds on MacOS and some other nonsense 2020-06-09T19:36:04 #kisslinux <dilynm> Basically they assume gcc on linux + clang lmao 2020-06-09T19:36:28 #kisslinux <dilynm> The solution is to simply stop using node, in my case 2020-06-09T19:36:41 #kisslinux <E5ten> so I guess you just gotta do like sed 's/-latomic//' on whatever file says that? 2020-06-09T19:37:15 #kisslinux <dilynm> Basically 2020-06-09T19:37:35 #kisslinux <dilynm> At least, it *should* work 2020-06-09T19:39:22 #kisslinux <dilynm> Assuming -DCMAKE_EXCLUDE_ATOMIC_BUILTIN=OFF is a relevant flag, then yeah sed should be all one would need 2020-06-09T19:40:14 #kisslinux <dilynm> but alas I am not interested in building node again to test xD 2020-06-09T20:53:37 #kisslinux <E5ten> yeah that's the flag 2020-06-09T22:21:40 #kisslinux <rircB16BA> dylanaraps: The reference to qt5-webengine can be deleted. It is no problem to build qtwebengine without X stuff https://github.com/kisslinux/wiki/blob/master/wayland/install-wayland.txt#L53