Skip to content
This repository was archived by the owner on Feb 21, 2026. It is now read-only.

Commit cc7cdcc

Browse files
committed
revert i386 support
1 parent 73354e5 commit cc7cdcc

4 files changed

Lines changed: 444 additions & 0 deletions

File tree

include/linux/bits/alltypes.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
#include "bits/x86_64/alltypes.h"
33
#elif defined(__x32__)
44
#include "bits/x32/alltypes.h"
5+
#elif defined(__i386__) || defined(_M_IX86)
6+
#include "bits/i386/alltypes.h"
57
#elif defined(__aarch64__)
68
#include "bits/aarch64/alltypes.h"
79
#elif defined(__arm__)

include/linux/bits/float.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
#include "../../../musl/arch/x86_64/bits/float.h"
55
#elif defined(__x32__)
66
#include "../../../musl/arch/x32/bits/float.h"
7+
#elif defined(__i386__) || defined(_M_IX86)
8+
#include "../../../musl/arch/i386/bits/float.h"
79
#elif defined(__aarch64__)
810
#include "../../../musl/arch/aarch64/bits/float.h"
911
#elif defined(__arm__)

0 commit comments

Comments
 (0)