svn commit: r334554 - head/usr.bin/top
Michael Tuexen
Michael.Tuexen at macmic.franken.de
Sun Jun 3 10:04:50 UTC 2018
top doesn't work on a amd64 (64 logical cores) and on an arm64 (8 cores)
system anymore (world and kernel are in sync):
tuexen at epyc:~ % uname -a
FreeBSD epyc.nplab.de 12.0-CURRENT FreeBSD 12.0-CURRENT #5 r334554: Sun Jun 3 11:26:58 CEST 2018 root at epyc.nplab.de:/usr/obj/usr/home/tuexen/head/amd64.amd64/sys/GENERIC amd64
tuexen at epyc:~ % top
top: sysctlbyname kern.cp_times: Cannot allocate memory
FreeBSD bsd14.fh-muenster.de 12.0-CURRENT FreeBSD 12.0-CURRENT #16 r334554: Sun Jun 3 11:47:38 CEST 2018 root at bsd14.fh-muenster.de:/usr/obj/usr/home/tuexen/head/arm64.aarch64/sys/GENERIC arm64
tuexen at bsd14:~ % top
top: sysctlbyname kern.cp_times: Cannot allocate memory
Best regards
Michael
> On 3. Jun 2018, at 08:02, Eitan Adler <eadler at freebsd.org> wrote:
>
> Author: eadler
> Date: Sun Jun 3 06:02:31 2018
> New Revision: 334554
> URL: https://svnweb.freebsd.org/changeset/base/334554
>
> Log:
> top(1): Only use NO_WERROR for base gcc
>
> This is what was intended. If statements are hard.
>
> Modified:
> head/usr.bin/top/Makefile
>
> Modified: head/usr.bin/top/Makefile
> ==============================================================================
> --- head/usr.bin/top/Makefile Sun Jun 3 05:20:11 2018 (r334553)
> +++ head/usr.bin/top/Makefile Sun Jun 3 06:02:31 2018 (r334554)
> @@ -10,11 +10,13 @@ MAN= top.1
>
> WARNS?= 6
>
> -.if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 50000
> +.if ${COMPILER_TYPE} == "gcc"
> +.if ${COMPILER_VERSION} >= 50000
> CFLAGS.gcc=-Wno-error=cast-align -Wno-error=cast-qual -Wno-error=discarded-qualifiers -Wno-error=incompatible-pointer-types \
> -Wno-error=maybe-uninitialized
> .else #base gcc
> NO_WERROR=
> +.endif
> .endif
> CFLAGS.clang=-Wno-error=incompatible-pointer-types-discards-qualifiers -Wno-error=cast-qual -Wno-error=cast-align
>
>
More information about the svn-src-head
mailing list