We don't support a.out executables on RISC-V.

Reviewed by:	emaste
Sponsored by:	DARPA, AFRL
Sponsored by:	HEIF5
Differential Revision:	https://reviews.freebsd.org/D5048
This commit is contained in:
br 2016-01-24 15:15:57 +00:00
parent ab3b7383d7
commit 6cdde1eb9e

View File

@ -48,8 +48,8 @@ __FBSDID("$FreeBSD$");
#include "extern.h"
/* We don't support a.out executables on arm64 */
#ifndef __aarch64__
/* We don't support a.out executables on arm64 and riscv */
#if !defined(__aarch64__) && !defined(__riscv__)
#include <a.out.h>
#define AOUT_SUPPORTED
#endif