()
| 236 | "''", True) |
| 237 | |
| 238 | def print_man_header(): |
| 239 | header ='''.Dd {0} |
| 240 | .Dt FEX |
| 241 | .Os Linux |
| 242 | .Sh NAME |
| 243 | .Nm FEXLoader |
| 244 | .Nm FEXInterpreter |
| 245 | .Nm FEXBash |
| 246 | .Nd Fast x86-64 and x86 emulation. |
| 247 | .Sh SYNOPSIS |
| 248 | .Nm |
| 249 | .Op options |
| 250 | .Op Ar -- |
| 251 | .Ar Application |
| 252 | <args> ... |
| 253 | .Pp |
| 254 | .Nm FEXInterpreter |
| 255 | .Ar Application |
| 256 | <args> ... |
| 257 | .Pp |
| 258 | .Nm FEXBash |
| 259 | .Ar <args> ... |
| 260 | .Sh DESCRIPTION |
| 261 | FEX allows you to run x86 and x86-64 binaries on an AArch64 host, similar to qemu-user and box86. |
| 262 | 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. |
| 263 | FEX presents a Linux 5.0 interface to the guest, and supports both AArch64 and x86-64 as hosts. |
| 264 | FEX is very much work in progress, so expect things to change. |
| 265 | ''' |
| 266 | output_man.write(header.format(datetime.datetime.now().strftime("%d-%m-%Y"))) |
| 267 | |
| 268 | def print_man_tail(): |
| 269 | tail ='''.Sh FILES |
no test coverage detected