2019-11-26T03:07:16 #kisslinux alright, all of my libraries (apart of rust, firefox, and... nodejs 2019-11-26T03:07:42 #kisslinux ) have been moved to libc++ + libc++abi + compiler-rt 2019-11-26T03:08:20 #kisslinux two more builds and I'll kiss r gcc and binutils goodbye 2019-11-26T03:29:58 #kisslinux I'm at that point except fuck building rust so for rust things I just install libgcc_s when I need to compile them 2019-11-26T03:34:47 #kisslinux split packages are not a thing in kiss (yet, I have some RFCs incoming for an implementation) so it's not possible for me atm 2019-11-26T03:35:00 #kisslinux although yeah, building rust is a pita 2019-11-26T09:08:00 #kisslinux Firefox 71.0 and rust 1.39.0 are now in extra/. 2019-11-26T09:08:02 #kisslinux :D 2019-11-26T12:01:26 #kisslinux i give up, i'll just ask the "rust community" later 2019-11-26T12:01:43 #kisslinux worst case I'll just compile the libgcc part 2019-11-26T16:50:53 #kisslinux dylanaraps: I'm thinking about switching to normal vim, do you know how to make it have a line cursor in insert mode? 2019-11-26T17:10:03 #kisslinux good evening to all, it is a short time since I installed this distro, I find myself mainly good because it is very reactive and fast even simple. not knowing how to compile drivers, I ask for something simple 2019-11-26T17:11:36 #kisslinux good evening to all, it is a short time since I installed this distro, I find myself mainly well because it is very reactive and fast even simple. I would like to know if it is possible to configure a usb wifi key, it is a mt7601 ralink, thanks in advance, I state not knowing how to compile drivers, I ask for something simple 2019-11-26T19:25:25 #kisslinux E5ten: New Cmake version with Unity builds. :D 2019-11-26T19:31:57 #kisslinux hell yeah 2019-11-26T19:35:16 #kisslinux From what I read, projects don't have to do anything to support this and I can enable it myself? 2019-11-26T19:36:13 #kisslinux See: https://cmake.org/cmake/help/v3.16/prop_tgt/UNITY_BUILD.html#prop_tgt:UNITY_BUILD 2019-11-26T19:36:20 #kisslinux And: https://cmake.org/cmake/help/v3.16/variable/CMAKE_UNITY_BUILD.html#variable:CMAKE_UNITY_BUILD 2019-11-26T19:39:19 #kisslinux Heh... 2019-11-26T19:39:26 #kisslinux looks like it yeah 2019-11-26T19:39:29 #kisslinux Cmake itself fails to build with Unity builds enabled. 2019-11-26T19:39:36 #kisslinux lol 2019-11-26T19:39:45 #kisslinux lol nice 2019-11-26T19:39:48 #kisslinux what's the error? 2019-11-26T19:39:55 #kisslinux 2 secs 2019-11-26T19:40:41 #kisslinux It does reduce compilation objects to 190 from 777. 2019-11-26T19:40:56 #kisslinux > error: conflicting declaration ‘const std::vector expectedResults’ 2019-11-26T19:41:17 #kisslinux > In file included from Tests/CMakeLib/CMakeFiles/CMakeLibTests.dir/Unity/unity_0.cxx:8 2019-11-26T19:41:29 #kisslinux Is the Unity build failing to build the Unity build code? 2019-11-26T19:41:41 #kisslinux haha it looks like it 2019-11-26T19:41:50 #kisslinux that looks like a test though? 2019-11-26T19:41:54 #kisslinux why do you have tests enabled? 2019-11-26T19:42:11 #kisslinux Release builds don't disable tests? 2019-11-26T19:42:23 #kisslinux no... 2019-11-26T19:42:40 #kisslinux build type just affects optimization/debugging compiler flags as far as I know 2019-11-26T19:42:50 #kisslinux Let me try without tests. 2019-11-26T19:43:19 #kisslinux I just started it, hopefully it works lol 2019-11-26T19:43:41 #kisslinux probably gonna be much higher on mem usage I imagine 2019-11-26T19:44:05 #kisslinux How do you disable tests? 2019-11-26T19:44:19 #kisslinux -DBUILD_TESTING=OFF 2019-11-26T19:44:31 #kisslinux I was unsuccessful 2019-11-26T19:44:42 #kisslinux Is this for all software using cmake? 2019-11-26T19:44:56 #kisslinux all software using cmake that uses CTest yeah 2019-11-26T19:45:26 #kisslinux > [9/122] Building CXX object Source/CMakeFiles/CTestLib.dir/Unity/unity_6.cxx.o 2019-11-26T19:45:35 #kisslinux So far so good. 2019-11-26T19:45:54 #kisslinux Aw 2019-11-26T19:45:58 #kisslinux I failed on "kwsysPrivate.h included multiple times" 2019-11-26T19:47:56 #kisslinux I don't get why they #error on that? 2019-11-26T19:48:09 #kisslinux cuz the include guard already prevent multiple definitions 2019-11-26T19:48:13 #kisslinux > error: redefinition of ‘struct yy_trans_info’ 2019-11-26T19:48:15 #kisslinux so why not just warn 2019-11-26T19:48:42 #kisslinux I get a bunch of errors in cmzlib lol 2019-11-26T19:48:52 #kisslinux > error: conflicting declaration ‘const flex_int16_t yy_accept 2019-11-26T19:49:12 #kisslinux I get 100+ errors lol 2019-11-26T19:49:28 #kisslinux It's a shame this doesn't "just work". 2019-11-26T19:49:39 #kisslinux I'm gonna try it with some other software. 2019-11-26T19:50:41 #kisslinux Fails in configure for libjpeg-turbo. 2019-11-26T19:51:03 #kisslinux 2 things I don't like about cmake are GNUInstallDirs isn't included by default, even though it's like always useful, and it's called GNUInstallDirs 2019-11-26T19:51:38 #kisslinux Also fails in configure for x265. 2019-11-26T19:51:41 #kisslinux What does it do? 2019-11-26T19:52:12 #kisslinux it's the cmake module that deals with setting up all the variables like CMAKE_INSTALL_LIBDIR and their equivalents with the CMAKE_INSTALL_PREFIX added like CMAKE_INSTALL_FULL_LIBDIR 2019-11-26T19:52:36 #kisslinux Ah 2019-11-26T19:52:41 #kisslinux literally never not useful 2019-11-26T19:53:45 #kisslinux Oh, unity builds require some work on the project's side. 2019-11-26T19:53:48 #kisslinux :( 2019-11-26T19:54:14 #kisslinux I guess that's not really surprising 2019-11-26T19:54:37 #kisslinux Yeah 2019-11-26T20:58:01 #kisslinux jeez, never realised what a monster qt5 is 2019-11-26T20:58:28 #kisslinux finally got it to build after disabling most things - openssl being the worst offender 2019-11-26T20:58:48 #kisslinux why the fuck is a widget toolkit doing crypto anyway!? 2019-11-26T21:00:08 #kisslinux anyone else tried building qt5 or qt5 apps on KISS? 2019-11-26T21:27:46 #kisslinux Hello