Overview
| Comment: | Remove lookup-asm-x86_64-macho.S
This is unused now that only the Apple runtime can be used on macOS. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | 1.0 |
| Files: | files | file ages | folders |
| SHA3-256: |
5672243f7fd72d424573e29a16bb14f5 |
| User & Date: | js on 2020-10-04 15:17:22 |
| Other Links: | branch diff | manifest | tags |
Context
|
2020-10-05
| ||
| 00:01 | .travis.yml: Don't build with --enable-runtime (check-in: 9ea99b287d user: js tags: 1.0) | |
|
2020-10-04
| ||
| 15:17 | Remove lookup-asm-x86_64-macho.S (check-in: 5672243f7f user: js tags: 1.0) | |
| 14:54 | configure: Always use Apple runtime on macOS (check-in: eb608dc5f1 user: js tags: 1.0) | |
Changes
Deleted src/runtime/lookup-asm/lookup-asm-x86_64-macho.S version [1d842ab593].
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
|
Modified src/runtime/lookup-asm/lookup-asm.S from [4908be8ba8] to [79ebaba74d].
| ︙ | |||
35 36 37 38 39 40 41 | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | - - - - | # elif defined(OF_MIPS) # include "lookup-asm-mips-elf.S" # elif defined(OF_SPARC64) # include "lookup-asm-sparc64-elf.S" # elif defined(OF_SPARC) # include "lookup-asm-sparc-elf.S" # endif |
Modified src/runtime/private.h from [7f0c22271c] to [8bfde7861e].
| ︙ | |||
338 339 340 341 342 343 344 | 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | - - - - |
}
#if defined(OF_ELF)
# if defined(OF_X86_64) || defined(OF_X86) || defined(OF_POWERPC) || \
defined(OF_ARM64) || defined(OF_ARM) || \
defined(OF_MIPS64_N64) || defined(OF_MIPS) || \
defined(OF_SPARC64) || defined(OF_SPARC)
|
| ︙ |