mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-23 05:42:29 +00:00
Unbreak the x86-64 build
This commit is contained in:
parent
7bc20bff3e
commit
207e18a060
66 changed files with 443 additions and 117 deletions
7
third_party/python/Modules/mmapmodule.c
vendored
7
third_party/python/Modules/mmapmodule.c
vendored
|
@ -1495,7 +1495,12 @@ PyInit_mmap(void)
|
|||
return module;
|
||||
}
|
||||
|
||||
_Section(".rodata.pytab.1 //") const struct _inittab _PyImport_Inittab_mmap = {
|
||||
#ifdef __aarch64__
|
||||
_Section(".rodata.pytab.1 //")
|
||||
#else
|
||||
_Section(".rodata.pytab.1")
|
||||
#endif
|
||||
const struct _inittab _PyImport_Inittab_mmap = {
|
||||
"mmap",
|
||||
PyInit_mmap,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue