ffi 1.13.1 → 1.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -0
- data/README.md +10 -2
- data/ext/ffi_c/AbstractMemory.c +25 -26
- data/ext/ffi_c/Buffer.c +2 -7
- data/ext/ffi_c/Call.c +2 -7
- data/ext/ffi_c/ClosurePool.c +64 -11
- data/ext/ffi_c/ClosurePool.h +3 -1
- data/ext/ffi_c/DynamicLibrary.c +1 -6
- data/ext/ffi_c/Function.c +8 -13
- data/ext/ffi_c/FunctionInfo.c +2 -6
- data/ext/ffi_c/LastError.c +2 -6
- data/ext/ffi_c/MemoryPointer.c +2 -7
- data/ext/ffi_c/MethodHandle.c +4 -8
- data/ext/ffi_c/Platform.c +2 -7
- data/ext/ffi_c/Pointer.c +24 -25
- data/ext/ffi_c/Struct.c +3 -6
- data/ext/ffi_c/StructByValue.c +2 -7
- data/ext/ffi_c/StructLayout.c +2 -5
- data/ext/ffi_c/Thread.c +0 -5
- data/ext/ffi_c/Thread.h +1 -6
- data/ext/ffi_c/Type.c +1 -1
- data/ext/ffi_c/Variadic.c +2 -7
- data/ext/ffi_c/extconf.rb +17 -4
- data/ext/ffi_c/libffi/.travis/bfin-sim.exp +1 -1
- data/ext/ffi_c/libffi/.travis/m32r-sim.exp +1 -1
- data/ext/ffi_c/libffi/.travis/moxie-sim.exp +1 -1
- data/ext/ffi_c/libffi/.travis/or1k-sim.exp +1 -1
- data/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +1 -1
- data/ext/ffi_c/libffi/.travis/wine-sim.exp +1 -1
- data/ext/ffi_c/libffi/Makefile.am +48 -58
- data/ext/ffi_c/libffi/README.md +4 -0
- data/ext/ffi_c/libffi/config.guess +552 -331
- data/ext/ffi_c/libffi/config.sub +1321 -1306
- data/ext/ffi_c/libffi/configure.ac +6 -1
- data/ext/ffi_c/libffi/configure.host +32 -20
- data/ext/ffi_c/libffi/doc/Makefile.am +3 -0
- data/ext/ffi_c/libffi/doc/libffi.texi +997 -0
- data/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +1 -1
- data/ext/ffi_c/libffi/msvcc.sh +11 -11
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +45 -35
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +10 -5
- data/ext/ffi_c/libffi/src/aarch64/internal.h +1 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +1 -1
- data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +1 -1
- data/ext/ffi_c/libffi/src/arm/ffi.c +22 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +4 -4
- data/ext/ffi_c/libffi/src/closures.c +23 -6
- data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
- data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
- data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
- data/ext/ffi_c/libffi/src/dlmalloc.c +1 -1
- data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
- data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
- data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
- data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +5 -1
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +1 -1
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +13 -1
- data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +1 -1
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +8 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +13 -1
- data/ext/ffi_c/libffi/src/prep_cif.c +1 -1
- data/ext/ffi_c/libffi/src/x86/ffi.c +8 -2
- data/ext/ffi_c/libffi/src/x86/ffi64.c +7 -0
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +5 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +2 -2
- data/ext/ffi_c/libffi/src/x86/unix64.S +1 -2
- data/ext/ffi_c/libffi/src/x86/win64.S +3 -2
- data/ext/ffi_c/libffi/src/x86/win64_intel.S +3 -2
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +22 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +2 -0
- data/ffi.gemspec +1 -1
- data/lib/ffi.rb +2 -2
- data/lib/ffi/abstract_memory.rb +44 -0
- data/lib/ffi/ffi.rb +1 -0
- data/lib/ffi/library.rb +1 -1
- data/lib/ffi/platform.rb +15 -6
- data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
- data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
- data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
- data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
- data/lib/ffi/pointer.rb +21 -7
- data/lib/ffi/version.rb +1 -1
- metadata +15 -11
- data/.appveyor.yml +0 -30
- data/.github/workflows/ci.yml +0 -64
- data/.gitignore +0 -25
- data/.gitmodules +0 -4
- data/.travis.yml +0 -58
- data/.yardopts +0 -5
- data/ext/ffi_c/win32/stdbool.h +0 -8
- data/ext/ffi_c/win32/stdint.h +0 -201
data/ext/ffi_c/FunctionInfo.c
CHANGED
@@ -33,12 +33,8 @@
|
|
33
33
|
#include <sys/types.h>
|
34
34
|
#include <stdio.h>
|
35
35
|
|
36
|
-
#
|
37
|
-
#
|
38
|
-
# include <stdbool.h>
|
39
|
-
#else
|
40
|
-
# include "win32/stdbool.h"
|
41
|
-
#endif
|
36
|
+
#include <stdint.h>
|
37
|
+
#include <stdbool.h>
|
42
38
|
|
43
39
|
#include <errno.h>
|
44
40
|
#include <ruby.h>
|
data/ext/ffi_c/LastError.c
CHANGED
@@ -33,12 +33,8 @@
|
|
33
33
|
#endif
|
34
34
|
#include <sys/types.h>
|
35
35
|
#include <stdio.h>
|
36
|
-
#
|
37
|
-
#
|
38
|
-
# include <stdbool.h>
|
39
|
-
#else
|
40
|
-
# include "win32/stdbool.h"
|
41
|
-
#endif
|
36
|
+
#include <stdint.h>
|
37
|
+
#include <stdbool.h>
|
42
38
|
#include <errno.h>
|
43
39
|
#include <ruby.h>
|
44
40
|
|
data/ext/ffi_c/MemoryPointer.c
CHANGED
@@ -28,13 +28,8 @@
|
|
28
28
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
29
29
|
*/
|
30
30
|
|
31
|
-
#
|
32
|
-
#
|
33
|
-
# include <stdint.h>
|
34
|
-
#else
|
35
|
-
# include "win32/stdbool.h"
|
36
|
-
# include "win32/stdint.h"
|
37
|
-
#endif
|
31
|
+
#include <stdbool.h>
|
32
|
+
#include <stdint.h>
|
38
33
|
#include <limits.h>
|
39
34
|
#include <ruby.h>
|
40
35
|
#include "rbffi.h"
|
data/ext/ffi_c/MethodHandle.c
CHANGED
@@ -34,13 +34,8 @@
|
|
34
34
|
# include <sys/mman.h>
|
35
35
|
#endif
|
36
36
|
#include <stdio.h>
|
37
|
-
#
|
38
|
-
#
|
39
|
-
# include <stdbool.h>
|
40
|
-
#else
|
41
|
-
# include "win32/stdint.h"
|
42
|
-
# include "win32/stdbool.h"
|
43
|
-
#endif
|
37
|
+
#include <stdint.h>
|
38
|
+
#include <stdbool.h>
|
44
39
|
#ifndef _WIN32
|
45
40
|
# include <unistd.h>
|
46
41
|
#endif
|
@@ -117,6 +112,7 @@ rbffi_MethodHandle_Free(MethodHandle* handle)
|
|
117
112
|
{
|
118
113
|
if (handle != NULL) {
|
119
114
|
rbffi_Closure_Free(handle->closure);
|
115
|
+
xfree(handle);
|
120
116
|
}
|
121
117
|
}
|
122
118
|
|
@@ -140,7 +136,7 @@ prep_trampoline(void* ctx, void* code, Closure* closure, char* errmsg, size_t er
|
|
140
136
|
#if defined(USE_RAW)
|
141
137
|
ffiStatus = ffi_prep_raw_closure(code, &mh_cif, attached_method_invoke, closure);
|
142
138
|
#else
|
143
|
-
ffiStatus = ffi_prep_closure_loc(
|
139
|
+
ffiStatus = ffi_prep_closure_loc(closure->pcl, &mh_cif, attached_method_invoke, closure, code);
|
144
140
|
#endif
|
145
141
|
if (ffiStatus != FFI_OK) {
|
146
142
|
snprintf(errmsg, errmsgsize, "ffi_prep_closure_loc failed. status=%#x", ffiStatus);
|
data/ext/ffi_c/Platform.c
CHANGED
@@ -31,13 +31,8 @@
|
|
31
31
|
# include <sys/param.h>
|
32
32
|
#endif
|
33
33
|
# include <sys/types.h>
|
34
|
-
#
|
35
|
-
#
|
36
|
-
# include <stdbool.h>
|
37
|
-
#else
|
38
|
-
# include "win32/stdint.h"
|
39
|
-
# include "win32/stdbool.h"
|
40
|
-
#endif
|
34
|
+
#include <stdint.h>
|
35
|
+
#include <stdbool.h>
|
41
36
|
#include <ruby.h>
|
42
37
|
#include <ctype.h>
|
43
38
|
#include "rbffi_endian.h"
|
data/ext/ffi_c/Pointer.c
CHANGED
@@ -27,13 +27,8 @@
|
|
27
27
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
28
28
|
*/
|
29
29
|
|
30
|
-
#
|
31
|
-
#
|
32
|
-
# include <stdbool.h>
|
33
|
-
#else
|
34
|
-
# include "win32/stdint.h"
|
35
|
-
# include "win32/stdbool.h"
|
36
|
-
#endif
|
30
|
+
#include <stdint.h>
|
31
|
+
#include <stdbool.h>
|
37
32
|
#include <limits.h>
|
38
33
|
#include <ruby.h>
|
39
34
|
#include "rbffi.h"
|
@@ -157,14 +152,14 @@ ptr_initialize_copy(VALUE self, VALUE other)
|
|
157
152
|
{
|
158
153
|
AbstractMemory* src;
|
159
154
|
Pointer* dst;
|
160
|
-
|
155
|
+
|
161
156
|
Data_Get_Struct(self, Pointer, dst);
|
162
157
|
src = POINTER(other);
|
163
158
|
if (src->size == LONG_MAX) {
|
164
159
|
rb_raise(rb_eRuntimeError, "cannot duplicate unbounded memory area");
|
165
160
|
return Qnil;
|
166
161
|
}
|
167
|
-
|
162
|
+
|
168
163
|
if ((dst->memory.flags & (MEM_RD | MEM_WR)) != (MEM_RD | MEM_WR)) {
|
169
164
|
rb_raise(rb_eRuntimeError, "cannot duplicate unreadable/unwritable memory area");
|
170
165
|
return Qnil;
|
@@ -180,13 +175,13 @@ ptr_initialize_copy(VALUE self, VALUE other)
|
|
180
175
|
rb_raise(rb_eNoMemError, "failed to allocate memory size=%lu bytes", src->size);
|
181
176
|
return Qnil;
|
182
177
|
}
|
183
|
-
|
178
|
+
|
184
179
|
dst->allocated = true;
|
185
180
|
dst->autorelease = true;
|
186
181
|
dst->memory.address = (void *) (((uintptr_t) dst->storage + 0x7) & (uintptr_t) ~0x7ULL);
|
187
182
|
dst->memory.size = src->size;
|
188
183
|
dst->memory.typeSize = src->typeSize;
|
189
|
-
|
184
|
+
|
190
185
|
/* finally, copy the actual memory contents */
|
191
186
|
memcpy(dst->memory.address, src->address, src->size);
|
192
187
|
|
@@ -199,7 +194,7 @@ slice(VALUE self, long offset, long size)
|
|
199
194
|
AbstractMemory* ptr;
|
200
195
|
Pointer* p;
|
201
196
|
VALUE retval;
|
202
|
-
|
197
|
+
|
203
198
|
Data_Get_Struct(self, AbstractMemory, ptr);
|
204
199
|
checkBounds(ptr, offset, size == LONG_MAX ? 1 : size);
|
205
200
|
|
@@ -214,7 +209,7 @@ slice(VALUE self, long offset, long size)
|
|
214
209
|
return retval;
|
215
210
|
}
|
216
211
|
|
217
|
-
/*
|
212
|
+
/*
|
218
213
|
* Document-method: +
|
219
214
|
* call-seq: ptr + offset
|
220
215
|
* @param [Numeric] offset
|
@@ -237,7 +232,7 @@ ptr_plus(VALUE self, VALUE offset)
|
|
237
232
|
* @param [Numeric] offset
|
238
233
|
* @param [Numeric] length
|
239
234
|
* @return [Pointer]
|
240
|
-
* Return a new {Pointer} from an existing one. This pointer points on same contents
|
235
|
+
* Return a new {Pointer} from an existing one. This pointer points on same contents
|
241
236
|
* from +offset+ for a length +length+.
|
242
237
|
*/
|
243
238
|
static VALUE
|
@@ -256,7 +251,7 @@ ptr_inspect(VALUE self)
|
|
256
251
|
{
|
257
252
|
char buf[100];
|
258
253
|
Pointer* ptr;
|
259
|
-
|
254
|
+
|
260
255
|
Data_Get_Struct(self, Pointer, ptr);
|
261
256
|
|
262
257
|
if (ptr->memory.size != LONG_MAX) {
|
@@ -295,7 +290,7 @@ static VALUE
|
|
295
290
|
ptr_equals(VALUE self, VALUE other)
|
296
291
|
{
|
297
292
|
Pointer* ptr;
|
298
|
-
|
293
|
+
|
299
294
|
Data_Get_Struct(self, Pointer, ptr);
|
300
295
|
|
301
296
|
if (NIL_P(other)) {
|
@@ -314,7 +309,7 @@ static VALUE
|
|
314
309
|
ptr_address(VALUE self)
|
315
310
|
{
|
316
311
|
Pointer* ptr;
|
317
|
-
|
312
|
+
|
318
313
|
Data_Get_Struct(self, Pointer, ptr);
|
319
314
|
|
320
315
|
return ULL2NUM((uintptr_t) ptr->memory.address);
|
@@ -331,9 +326,9 @@ ptr_address(VALUE self)
|
|
331
326
|
* @overload order
|
332
327
|
* @return [:big, :little] endianness of +self+
|
333
328
|
* @overload order(order)
|
334
|
-
* @param [Symbol] order endianness to set (+:little+, +:big+ or +:network+). +:big+ and +:network+
|
329
|
+
* @param [Symbol] order endianness to set (+:little+, +:big+ or +:network+). +:big+ and +:network+
|
335
330
|
* are synonymous.
|
336
|
-
* @return
|
331
|
+
* @return a new pointer with the new order
|
337
332
|
*/
|
338
333
|
static VALUE
|
339
334
|
ptr_order(int argc, VALUE* argv, VALUE self)
|
@@ -358,6 +353,8 @@ ptr_order(int argc, VALUE* argv, VALUE self)
|
|
358
353
|
|
359
354
|
} else if (id == rb_intern("big") || id == rb_intern("network")) {
|
360
355
|
order = BIG_ENDIAN;
|
356
|
+
} else {
|
357
|
+
rb_raise(rb_eArgError, "unknown byte order");
|
361
358
|
}
|
362
359
|
}
|
363
360
|
if (order != BYTE_ORDER) {
|
@@ -395,7 +392,7 @@ ptr_free(VALUE self)
|
|
395
392
|
|
396
393
|
} else {
|
397
394
|
VALUE caller = rb_funcall(rb_funcall(Qnil, rb_intern("caller"), 0), rb_intern("first"), 0);
|
398
|
-
|
395
|
+
|
399
396
|
rb_warn("calling free on non allocated pointer %s from %s", RSTRING_PTR(ptr_inspect(self)), RSTRING_PTR(rb_str_to_str(caller)));
|
400
397
|
}
|
401
398
|
|
@@ -408,7 +405,7 @@ ptr_type_size(VALUE self)
|
|
408
405
|
Pointer* ptr;
|
409
406
|
|
410
407
|
Data_Get_Struct(self, Pointer, ptr);
|
411
|
-
|
408
|
+
|
412
409
|
return INT2NUM(ptr->memory.typeSize);
|
413
410
|
}
|
414
411
|
|
@@ -440,7 +437,7 @@ ptr_autorelease_p(VALUE self)
|
|
440
437
|
Pointer* ptr;
|
441
438
|
|
442
439
|
Data_Get_Struct(self, Pointer, ptr);
|
443
|
-
|
440
|
+
|
444
441
|
return ptr->autorelease ? Qtrue : Qfalse;
|
445
442
|
}
|
446
443
|
|
@@ -472,9 +469,11 @@ rbffi_Pointer_Init(VALUE moduleFFI)
|
|
472
469
|
* Pointer class is used to manage C pointers with ease. A {Pointer} object is defined by his
|
473
470
|
* {#address} (as a C pointer). It permits additions with an integer for pointer arithmetic.
|
474
471
|
*
|
475
|
-
* ==Autorelease
|
476
|
-
*
|
477
|
-
*
|
472
|
+
* == Autorelease
|
473
|
+
* By default a pointer object frees its content when it's garbage collected.
|
474
|
+
* Therefore it's usually not necessary to call {#free} explicit.
|
475
|
+
* This behaviour may be changed with {#autorelease=} method.
|
476
|
+
* If it's set to +false+, the memory isn't freed by the garbage collector, but stays valid until +free()+ is called on C level or when the process terminates.
|
478
477
|
*/
|
479
478
|
rbffi_PointerClass = rb_define_class_under(moduleFFI, "Pointer", ffi_AbstractMemory);
|
480
479
|
/*
|
data/ext/ffi_c/Struct.c
CHANGED
@@ -31,12 +31,9 @@
|
|
31
31
|
#include <sys/types.h>
|
32
32
|
#ifndef _MSC_VER
|
33
33
|
# include <sys/param.h>
|
34
|
-
# include <stdint.h>
|
35
|
-
# include <stdbool.h>
|
36
|
-
#else
|
37
|
-
# include "win32/stdbool.h"
|
38
|
-
# include "win32/stdint.h"
|
39
34
|
#endif
|
35
|
+
#include <stdint.h>
|
36
|
+
#include <stdbool.h>
|
40
37
|
#include <ruby.h>
|
41
38
|
#include "rbffi.h"
|
42
39
|
#include "compat.h"
|
@@ -290,7 +287,7 @@ struct_field(Struct* s, VALUE fieldName)
|
|
290
287
|
VALUE rbField = rb_hash_aref(layout->rbFieldMap, fieldName);
|
291
288
|
if (unlikely(NIL_P(rbField))) {
|
292
289
|
VALUE str = rb_funcall2(fieldName, id_to_s, 0, NULL);
|
293
|
-
rb_raise(rb_eArgError, "No such field '%s'",
|
290
|
+
rb_raise(rb_eArgError, "No such field '%s'", StringValueCStr(str));
|
294
291
|
}
|
295
292
|
/* Write the retrieved coder to the cache */
|
296
293
|
p_ce->fieldName = fieldName;
|
data/ext/ffi_c/StructByValue.c
CHANGED
@@ -32,13 +32,8 @@
|
|
32
32
|
#endif
|
33
33
|
#include <sys/types.h>
|
34
34
|
#include <stdio.h>
|
35
|
-
#
|
36
|
-
#
|
37
|
-
# include <stdbool.h>
|
38
|
-
#else
|
39
|
-
# include "win32/stdbool.h"
|
40
|
-
# include "win32/stdint.h"
|
41
|
-
#endif
|
35
|
+
#include <stdint.h>
|
36
|
+
#include <stdbool.h>
|
42
37
|
#include <errno.h>
|
43
38
|
#include <ruby.h>
|
44
39
|
|
data/ext/ffi_c/StructLayout.c
CHANGED
@@ -32,12 +32,9 @@
|
|
32
32
|
|
33
33
|
#ifndef _MSC_VER
|
34
34
|
# include <sys/param.h>
|
35
|
-
# include <stdint.h>
|
36
|
-
# include <stdbool.h>
|
37
|
-
#else
|
38
|
-
# include "win32/stdbool.h"
|
39
|
-
# include "win32/stdint.h"
|
40
35
|
#endif
|
36
|
+
#include <stdint.h>
|
37
|
+
#include <stdbool.h>
|
41
38
|
#include <ruby.h>
|
42
39
|
#include "rbffi.h"
|
43
40
|
#include "compat.h"
|
data/ext/ffi_c/Thread.c
CHANGED
data/ext/ffi_c/Thread.h
CHANGED
@@ -30,12 +30,7 @@
|
|
30
30
|
#ifndef RBFFI_THREAD_H
|
31
31
|
#define RBFFI_THREAD_H
|
32
32
|
|
33
|
-
#
|
34
|
-
# include <stdbool.h>
|
35
|
-
#else
|
36
|
-
# include "win32/stdbool.h"
|
37
|
-
# include "win32/stdint.h"
|
38
|
-
#endif
|
33
|
+
#include <stdbool.h>
|
39
34
|
#include <ruby.h>
|
40
35
|
#include "extconf.h"
|
41
36
|
|
data/ext/ffi_c/Type.c
CHANGED
data/ext/ffi_c/Variadic.c
CHANGED
@@ -33,13 +33,8 @@
|
|
33
33
|
#include <sys/types.h>
|
34
34
|
|
35
35
|
#include <stdio.h>
|
36
|
-
#
|
37
|
-
#
|
38
|
-
# include <stdbool.h>
|
39
|
-
#else
|
40
|
-
# include "win32/stdbool.h"
|
41
|
-
# include "win32/stdint.h"
|
42
|
-
#endif
|
36
|
+
#include <stdint.h>
|
37
|
+
#include <stdbool.h>
|
43
38
|
#include <ruby.h>
|
44
39
|
|
45
40
|
#include <ffi.h>
|
data/ext/ffi_c/extconf.rb
CHANGED
@@ -50,6 +50,16 @@ if RUBY_ENGINE == 'ruby' || RUBY_ENGINE == 'rbx'
|
|
50
50
|
else
|
51
51
|
$defs << "-DHAVE_FFI_PREP_CIF_VAR"
|
52
52
|
$defs << "-DUSE_INTERNAL_LIBFFI"
|
53
|
+
|
54
|
+
# Ensure libffi symbols aren't exported when using static libffi.
|
55
|
+
# This is to avoid interference with other gems like fiddle.
|
56
|
+
# See https://github.com/ffi/ffi/issues/835
|
57
|
+
append_ldflags "-Wl,--exclude-libs,ALL"
|
58
|
+
end
|
59
|
+
|
60
|
+
ffi_alloc_default = RbConfig::CONFIG['host_os'] =~ /darwin/i && RbConfig::CONFIG['host'] =~ /arm/i
|
61
|
+
if enable_config('libffi-alloc', ffi_alloc_default)
|
62
|
+
$defs << "-DUSE_FFI_ALLOC"
|
53
63
|
end
|
54
64
|
|
55
65
|
$defs << "-DHAVE_EXTCONF_H" if $defs.empty? # needed so create_header works
|
@@ -60,13 +70,16 @@ if RUBY_ENGINE == 'ruby' || RUBY_ENGINE == 'rbx'
|
|
60
70
|
unless system_libffi
|
61
71
|
File.open("Makefile", "a") do |mf|
|
62
72
|
mf.puts "LIBFFI_HOST=--host=#{RbConfig::CONFIG['host_alias']}" if RbConfig::CONFIG.has_key?("host_alias")
|
63
|
-
if RbConfig::CONFIG['host_os']
|
73
|
+
if RbConfig::CONFIG['host_os'] =~ /darwin/i
|
74
|
+
if RbConfig::CONFIG['host'] =~ /arm/i
|
75
|
+
mf.puts "LIBFFI_HOST=--host=aarch64-apple-#{RbConfig::CONFIG['host_os']}"
|
76
|
+
end
|
64
77
|
mf.puts "include ${srcdir}/libffi.darwin.mk"
|
65
|
-
elsif RbConfig::CONFIG['host_os']
|
78
|
+
elsif RbConfig::CONFIG['host_os'] =~ /bsd/i
|
66
79
|
mf.puts '.include "${srcdir}/libffi.bsd.mk"'
|
67
|
-
elsif RbConfig::CONFIG['host_os']
|
80
|
+
elsif RbConfig::CONFIG['host_os'] =~ /mswin64/i
|
68
81
|
mf.puts '!include $(srcdir)/libffi.vc64.mk'
|
69
|
-
elsif RbConfig::CONFIG['host_os']
|
82
|
+
elsif RbConfig::CONFIG['host_os'] =~ /mswin32/i
|
70
83
|
mf.puts '!include $(srcdir)/libffi.vc.mk'
|
71
84
|
else
|
72
85
|
mf.puts "include ${srcdir}/libffi.mk"
|
@@ -14,7 +14,7 @@
|
|
14
14
|
#
|
15
15
|
# You should have received a copy of the GNU General Public License
|
16
16
|
# along with DejaGnu; if not, write to the Free Software Foundation,
|
17
|
-
# Inc.,
|
17
|
+
# Inc., 51 Franklin Street, Fifth Floor, MA 02110, USA.
|
18
18
|
|
19
19
|
# This is a list of toolchains that are supported on this board.
|
20
20
|
set_board_info target_install {bfin-elf}
|
@@ -14,7 +14,7 @@
|
|
14
14
|
#
|
15
15
|
# You should have received a copy of the GNU General Public License
|
16
16
|
# along with DejaGnu; if not, write to the Free Software Foundation,
|
17
|
-
# Inc.,
|
17
|
+
# Inc., 51 Franklin Street, Fifth Floor, MA 02110, USA.
|
18
18
|
|
19
19
|
# This is a list of toolchains that are supported on this board.
|
20
20
|
set_board_info target_install {m32r-elf}
|
@@ -14,7 +14,7 @@
|
|
14
14
|
#
|
15
15
|
# You should have received a copy of the GNU General Public License
|
16
16
|
# along with DejaGnu; if not, write to the Free Software Foundation,
|
17
|
-
# Inc.,
|
17
|
+
# Inc., 51 Franklin Street, Fifth Floor, MA 02110, USA.
|
18
18
|
|
19
19
|
# This is a list of toolchains that are supported on this board.
|
20
20
|
set_board_info target_install {moxie-elf}
|
@@ -14,7 +14,7 @@
|
|
14
14
|
#
|
15
15
|
# You should have received a copy of the GNU General Public License
|
16
16
|
# along with DejaGnu; if not, write to the Free Software Foundation,
|
17
|
-
# Inc.,
|
17
|
+
# Inc., 51 Franklin Street, Fifth Floor, MA 02110, USA.
|
18
18
|
|
19
19
|
# This is a list of toolchains that are supported on this board.
|
20
20
|
set_board_info target_install {or1k-elf}
|
@@ -14,7 +14,7 @@
|
|
14
14
|
#
|
15
15
|
# You should have received a copy of the GNU General Public License
|
16
16
|
# along with DejaGnu; if not, write to the Free Software Foundation,
|
17
|
-
# Inc.,
|
17
|
+
# Inc., 51 Franklin Street, Fifth Floor, MA 02110, USA.
|
18
18
|
|
19
19
|
# This is a list of toolchains that are supported on this board.
|
20
20
|
set_board_info target_install {powerpc-eabisim}
|