Package Details: linux-ck-headers 6.11.10-1

Git Clone URL: https://aur.archlinux.org/linux-ck.git (read-only, click to copy)
Package Base: linux-ck
Description: Headers and scripts for building modules for Linux-ck kernel
Upstream URL: https://wiki.archlinux.org/index.php/Linux-ck
Licenses: GPL-2.0-only
Submitter: graysky
Maintainer: graysky
Last Packager: graysky
Votes: 457
Popularity: 0.072189
First Submitted: 2011-07-22 14:51 (UTC)
Last Updated: 2024-11-26 13:15 (UTC)

Latest Comments

« First ‹ Previous 1 .. 89 90 91 92 93 94 95 96 97 98 99 .. 308 Next › Last »

QuartzDragon commented on 2016-12-19 14:59 (UTC)

@Rainmaker Cannot reproduce here. That's a weird error I've never seen before... What else is happening on your machine while trying to compile?

Rainmaker commented on 2016-12-19 10:50 (UTC)

4.8.15-2 fails because it's trying to call /bin/sh during the build: Cyclomatic Complexity 2 sound/core/hwdep.c:snd_hwdep_proc_read Cyclomatic Complexity 1 sound/core/hwdep.c:alsa_hwdep_init Cyclomatic Complexity 1 sound/core/hwdep.c:alsa_hwdep_exit make[2]: /bin/sh: Command not found make[2]: *** [scripts/Makefile.build:427: sound/core/snd-hwdep.o] Error 127 make[1]: *** [scripts/Makefile.build:440: sound/core] Error 2 make: *** [Makefile:974: sound] Error 2 ==> ERROR: A failure occurred in build(). Aborting...

blitz commented on 2016-12-18 23:07 (UTC)

@graysky - Kernel config allows for menu driven cpu arch selection with minimal interaction and pre-selected MNATIVE. (taken from own PKGBUILD) _CPU_NATIVE=y ... ### Optionally set processor type for kernel if [ -n "${_CPU_NATIVE}" ]; then msg "Setting cpu arch to gcc native..." if [ "${CARCH}" = "x86_64" ]; then sed -i -e 's/^CONFIG_GENERIC_CPU=y/# CONFIG_GENERIC_CPU is not set/' \ -i -e 's/^# CONFIG_MNATIVE is not set/CONFIG_MNATIVE=y/' ./.config else sed -i -e 's/^CONFIG_M686=y/# CONFIG_M686 is not set/' \ -i -e 's/^# CONFIG_MNATIVE is not set/CONFIG_MNATIVE=y/' ./.config fi fi

graysky commented on 2016-12-18 19:38 (UTC)

@mrkline - Update the checksum (again without bumping the pkgver). No real easy way to automate the selection of native.

mrkline commented on 2016-12-18 19:29 (UTC)

@graysky - The menu is quite nice! Hopefully I can stop messing around in nconfig soon. On that note, is it possible to automate the selection? I tried adding a `CONFIG_MNATIVE=y` line to config.x86_64, but I was still prompted when I ran makepkg. Also, enable_additional_cpu_optimizations_for_gcc_v4.9+_kernel_v3.15+.patch.gz needs its SHA updated.

graysky commented on 2016-12-18 17:36 (UTC)

OK, just updated without bumping the pkgver with this change. Feedback is welcomed.

graysky commented on 2016-12-18 13:42 (UTC)

@artafinde - see my comment from 2016-12-18 10:44 for the example.

artafinde commented on 2016-12-18 12:37 (UTC)

@graysky Can you provide a PKGBUILD (maybe through gist) to see how much interaction will be needed? I personally have to edit PKGBUILD anyway since I'm building with modprobed and BFS enabled by default (and using "-march=native")

nTia89 commented on 2016-12-18 11:43 (UTC) (edited on 2016-12-18 11:45 (UTC) by nTia89)

yes, missing of optimizations without -march=native is my worry! (I know, this seems false but it is true... https://bbs.archlinux.org/viewtopic.php?id=210740) hence, any modification is welcome, even if this mean to press some key my doubt is another: who builds this package from AUR, I imagine, wants the best optimizations overall, so, why "-march=native" is not the default choice?

zerophase commented on 2016-12-18 10:59 (UTC)

@graysky depends on how it's implemented. But, in general if a config file has new additions in a package bump it interrupts kernel compilation till I resolve the issue. I imagine whatever you implement will work with yaourt as well.