mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-03 11:12:27 +00:00
Introduce native support for MacOS ARM64
There's a new program named ape/ape-m1.c which will be used to build an embeddable binary that can load ape and elf executables. The support is mostly working so far, but still chasing down ABI issues.
This commit is contained in:
parent
b852650c08
commit
1422e96b4e
757 changed files with 2988 additions and 1321 deletions
4
third_party/musl/crypt_des.c
vendored
4
third_party/musl/crypt_des.c
vendored
|
@ -25,9 +25,9 @@
|
|||
│ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. │
|
||||
│ │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/mem/alg.h"
|
||||
#include "libc/limits.h"
|
||||
#include "libc/literal.h"
|
||||
#include "libc/mem/alg.h"
|
||||
#include "libc/str/str.h"
|
||||
#include "third_party/musl/crypt.internal.h"
|
||||
#include "third_party/musl/crypt_des.internal.h"
|
||||
|
@ -813,7 +813,7 @@ void __do_des(uint32_t l_in, uint32_t r_in,
|
|||
unsigned int round = 16;
|
||||
const uint32_t *kl = ekey->l;
|
||||
const uint32_t *kr = ekey->r;
|
||||
uint32_t f;
|
||||
uint32_t f = 0;
|
||||
while (round--) {
|
||||
uint32_t r48l, r48r;
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue