A fast usermode x86 and x86-64 emulator for Arm64 Linux https://fex-emu.com
  • C++ 60.1%
  • Assembly 33.1%
  • C 4.2%
  • Python 1.3%
  • CMake 0.9%
  • Other 0.3%
Find a file
Ryan Houdek e12bd27106
Merge pull request #5536 from Sonicadvance1/105
LibraryForwarding: Implement support for CUDA
2026-06-12 15:14:38 -07:00
.github github: Stop running unittests always on build failure 2026-03-19 20:08:10 -07:00
CodeEmitter CodeEmitter: Fix ambigious ExtendedType declaration 2026-03-16 18:50:01 +01:00
Data Thunks: Implement support for CUDA 2026-06-01 16:32:45 -07:00
docs Docs: Update for release FEX-2605 2026-05-08 19:28:30 -07:00
External External/rpmalloc: update 2026-05-29 16:16:46 -07:00
FEXCore Frontend: Fix vsyscall page tracking. 2026-06-03 18:03:31 -07:00
FEXHeaderUtils [cmake] more parenthesis cleanups, linker gc module, more same-line stuff 2025-12-29 15:44:18 -05:00
Scripts Scripts: Move arch check first in InstallFEX 2026-04-15 13:01:37 -07:00
Source Merge pull request #5547 from neobrain/feature_fexofflinecompiler_process_all 2026-06-12 02:11:33 -07:00
ThunkLibs Merge pull request #5536 from Sonicadvance1/105 2026-06-12 15:14:38 -07:00
unittests unittests/FEXLinuxTests: Adds 64-bit vsyscall test 2026-06-03 18:03:31 -07:00
.clang-format Update .clang-format 2025-07-17 08:09:25 +02:00
.clang-format-ignore Enable automatic code formatting for X86Tables.h 2026-01-23 15:39:54 +01:00
.git-blame-ignore-revs Add previous commit to git blame ignore file 2026-01-23 15:40:53 +01:00
.gitignore gitignore: ignore CMakeLists.txt.user 2026-01-18 19:33:43 -05:00
.gitlab-ci.yml gitlab-ci: Update requirements 2026-03-09 14:00:08 -07:00
.gitmodules External: Remove jemalloc (jemalloc_glibc still exists) 2026-02-10 08:28:51 -08:00
AGENTS.md meta: Add CONTRIBUTING.md 2026-05-22 14:03:14 -07:00
CLAUDE.md meta: Add CONTRIBUTING.md 2026-05-22 14:03:14 -07:00
CMakeLists.txt Build: Enable ccache sloppiness for time macros 2026-05-25 12:03:33 +02:00
CODE_OF_CONDUCT.md New domain. 2022-09-02 10:43:07 -07:00
CONTRIBUTING.md meta: Add CONTRIBUTING.md 2026-05-22 14:03:14 -07:00
LICENSE Initial Commit 2020-03-06 09:08:13 +02:00
Readme.md Readme.md: Mention Ubuntu 25.04 as supported 2025-07-26 00:38:26 +02:00

中文

FEX: Emulate x86 Programs on ARM64

FEX allows you to run x86 applications on ARM64 Linux devices, similar to qemu-user and box64. It offers broad compatibility with both 32-bit and 64-bit binaries, and it can be used alongside Wine/Proton to play Windows games.

It supports forwarding API calls to host system libraries like OpenGL or Vulkan to reduce emulation overhead. An experimental code cache helps minimize in-game stuttering as much as possible. Furthermore, a per-app configuration system allows tweaking performance per game, e.g. by skipping costly memory model emulation. We also provide a user-friendly FEXConfig GUI to explore and change these settings.

Prerequisites

FEX requires ARMv8.0+ hardware. It has been tested with the following Linux distributions, though others are likely to work as well:

  • Arch Linux
  • Fedora Linux
  • openSUSE
  • Ubuntu 22.04/24.04/24.10/25.04

An x86-64 RootFS is required and can be downloaded using our FEXRootFSFetcher tool for many distributions. For other distributions you will need to generate your own RootFS (our wiki page might help).

Quick Start

For Ubuntu 22.04, 24.04, 24.10 and 25.04

Execute the following command in the terminal to install FEX through a PPA.

curl --silent https://raw.githubusercontent.com/FEX-Emu/FEX/main/Scripts/InstallFEX.py | python3

This command will walk you through installing FEX through a PPA, and downloading a RootFS for use with FEX.

For other Distributions

Follow the guide on the official FEX-Emu Wiki here.

Navigating the Source

See the Source Outline for more information.