-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (40 loc) · 1.42 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
layout: default
---
<p>
FEX-Emu allows you to run x86 and x86-64 binaries on an AArch64 Linux host, similar to <a href="https://www.qemu.org/docs/master/user/main.html">qemu-user</a> and <a href="https://box86.org/">box86/box64</a>.
</p>
<p>
It has native support for a rootfs overlay, so you don't need to chroot, as well as some thunklibs so it can forward things like GL to the host.
</p>
<p>
It presents a Linux 5.0 or newer interface to the guest, and supports only AArch64 as a host.
</p>
<p>
This project is very much work in progress, so expect things to change.</p>
</p>
<a href="https://github.com/FEX-Emu/FEX#quick-start-guide">Try it out</a>
<h2>News</h2>
<div class="news">
{% assign count = 0 %}
{% for post in site.posts %}
{% comment %}
Don't show any hidden posts on the news page
{% endcomment %}
{% unless post.hidden == null %}{% continue %}{% endunless %}
{% comment %}
Only show three posts
{% endcomment %}
{% unless count < 3 %}{% break %}{% endunless %}
{% assign count = count | plus: 1 %}
<article class="news-item">
<a href="{{ site.baseurl }}{{ post.url }}"><h3>{{ post.title }}</h3></a>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endfor %}
<a href="{{ site.blog }}">Older Posts</a>
</div>
<link rel="me" href="https://mastodon.social/@FEX_Emu" />