Skip to content

Commit

Permalink
Disable gprof and users on RISC-V, they don't build.
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinr committed Jan 25, 2016
1 parent 8d218f7 commit d83e0fe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion usr.bin/Makefile
Expand Up @@ -268,7 +268,8 @@ SUBDIR.${MK_TOOLCHAIN}+= ctags
SUBDIR.${MK_TOOLCHAIN}+= cxxfilt
SUBDIR.${MK_TOOLCHAIN}+= elfcopy
SUBDIR.${MK_TOOLCHAIN}+= file2c
.if ${MACHINE_ARCH} != "aarch64" # ARM64TODO gprof does not build
.if ${MACHINE_ARCH} != "aarch64" && \ # ARM64TODO gprof does not build
${MACHINE_CPUARCH} != "riscv" # RISCVTODO gprof does not build
SUBDIR.${MK_TOOLCHAIN}+= gprof
.endif
SUBDIR.${MK_TOOLCHAIN}+= indent
Expand All @@ -290,7 +291,9 @@ SUBDIR.${MK_VT}+= vtfontcvt
SUBDIR.${MK_USB}+= usbhidaction
SUBDIR.${MK_USB}+= usbhidctl
SUBDIR.${MK_UTMPX}+= last
.if ${MACHINE_CPUARCH} != "riscv" # RISCVTODO users does not build
SUBDIR.${MK_UTMPX}+= users
.endif
SUBDIR.${MK_UTMPX}+= who
SUBDIR.${MK_SVN}+= svn
SUBDIR.${MK_SVNLITE}+= svn
Expand Down

0 comments on commit d83e0fe

Please sign in to comment.