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:
Ruslan Bukin 2016-01-24 15:15:57 +00:00
parent 4f0a4502a1
commit 5a0bf0f5c6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=294665

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