Overview
| Comment: | OFInvocation: Support for invoking on x86_64/ELF |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
6d2f81aea9ee5629e166eadd422258bb |
| User & Date: | js on 2017-09-16 19:11:45 |
| Other Links: | manifest | tags |
Context
|
2017-09-16
| ||
| 20:05 | invoke-x86_64.m: Fix compilation with GCC (check-in: 2379608969 user: js tags: trunk) | |
| 19:11 | OFInvocation: Support for invoking on x86_64/ELF (check-in: 6d2f81aea9 user: js tags: trunk) | |
|
2017-09-15
| ||
| 00:03 | invoke-x86_64.m: Add support for __int128 (check-in: 1b96a21136 user: js tags: trunk) | |
Changes
Modified src/OFInvocation.h from [c3fa8975c2] to [123d15423c].
| ︙ | |||
18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | + + + + + + | OF_ASSUME_NONNULL_BEGIN #ifdef OF_APPLE_RUNTIME # ifdef OF_X86_64 # define OF_INVOCATION_CAN_INVOKE # endif #else # ifdef OF_ELF # ifdef OF_X86_64 # define OF_INVOCATION_CAN_INVOKE # endif # endif #endif @class OFMethodSignature; @class OFMutableArray OF_GENERIC(ObjectType); @class OFMutableData; /*! |
| ︙ |
Modified src/invocation/Makefile from [4d35605397] to [a7afc8dd3a].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 | - + |
include ../../extra.mk
STATIC_PIC_LIB_NOINST = ${INVOCATION_LIB_A}
STATIC_LIB_NOINST = ${INVOCATION_A}
SRCS = call.S \
invoke.m
include ../../buildsys.mk
ASFLAGS += -I../.. -I..
|
Added src/invocation/call-x86_64-elf.S version [fa9ea51b67].