A fast usermode x86 and x86-64 emulator for Arm64 Linux https://fex-emu.com
  • C++ 60.1%
  • Assembly 33.3%
  • C 3.9%
  • Python 1.4%
  • CMake 0.9%
  • Other 0.3%
Find a file
LC 5b4a5969cc
Merge pull request #5401 from Sonicadvance1/126
Linux/GuestFrames: Ensure MXCSR is saved and restored on signal
2026-03-28 22:25:59 -04: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 CMake: Use a Find module for Zydis/Zycore 2026-01-20 13:56:12 -05:00
docs Docs: Update for release FEX-2603 2026-03-04 12:44:21 -08:00
External code-format-helper: Another dependabot upgrade 2026-03-15 20:45:17 -07:00
FEXCore OpcodeDispatcher/Vector: Make sure MXCSR is masked 2026-03-28 17:47:55 -07:00
FEXHeaderUtils [cmake] more parenthesis cleanups, linker gc module, more same-line stuff 2025-12-29 15:44:18 -05:00
Scripts unittests: Add specific paths for MOPS 2026-03-19 11:55:02 -04:00
Source Merge pull request #5401 from Sonicadvance1/126 2026-03-28 22:25:59 -04:00
ThunkLibs Merge pull request #5064 from zeyi2/fix-clang-22-building 2026-02-26 15:06:05 +00:00
unittests InstcountCI: Update 2026-03-28 18:06:54 -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
CMakeLists.txt Cmake: Default to release builds with a message 2026-03-19 16:25:40 -07:00
CMakeSettings.json [cmake] refactor: compiler and architecture handling 2025-12-29 14:05:09 -05:00
CODE_OF_CONDUCT.md New domain. 2022-09-02 10:43:07 -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.