@@ -9,33 +9,32 @@ SHELL=/bin/bash
9
9
10
10
# The matrix is the product of the following columns:
11
11
#
12
- # |------------|--------------- |----------|--------------|-------|
13
- # | Compiler ⨯ Engine ⨯ Platform ⨯ Architecture ⨯ libc |
14
- # |------------|--------------- |----------|--------------|-------|
15
- # | Cranelift | Universal | Linux | amd64 | glibc |
16
- # | LLVM | Shared Object | Darwin | aarch64 | musl |
17
- # | Singlepass | | Windows | | |
18
- # |------------|--------------- |----------|--------------|-------|
12
+ # |------------|-----------|----------|--------------|-------|
13
+ # | Compiler ⨯ Engine ⨯ Platform ⨯ Architecture ⨯ libc |
14
+ # |------------|-----------|----------|--------------|-------|
15
+ # | Cranelift | Universal | Linux | amd64 | glibc |
16
+ # | LLVM | Dylib | Darwin | aarch64 | musl |
17
+ # | Singlepass | | Windows | | |
18
+ # |------------|-----------|----------|--------------|-------|
19
19
#
20
20
# Here is what works and what doesn't:
21
21
#
22
22
# * Cranelift with the Universal engine works everywhere,
23
23
#
24
- # * Cranelift with the Shared Object engine works on
25
- # Linux+Darwin/`amd64`, but it doesn't work on */`aarch64` or
26
- # Windows/*.
24
+ # * Cranelift with the Dylib engine works on Linux+Darwin/`amd64`, but
25
+ # it doesn't work on */`aarch64` or Windows/*.
27
26
#
28
27
# * LLVM with the Universal engine works on Linux+Darwin/`amd64`,
29
28
# but it doesn't work on */`aarch64` or Windows/*.
30
29
#
31
- # * LLVM with the Shared Object engine works on
30
+ # * LLVM with the Dylib engine works on
32
31
# Linux+Darwin/`amd64`+`aarch64`, but it doesn't work on Windows/*.
33
32
#
34
33
# * Singlepass with the Universal engine works on Linux+Darwin/`amd64`, but
35
34
# it doesn't work on */`aarch64` or Windows/*.
36
35
#
37
- # * Singlepass with the Shared Object engine doesn't work because it
38
- # doesn't know how to output object files for the moment.
36
+ # * Singlepass with the Dylib engine doesn't work because it doesn't
37
+ # know how to output object files for the moment.
39
38
#
40
39
# * Windows isn't tested on `aarch64`, that's why we consider it's not
41
40
# working, but it might possibly be.
@@ -211,12 +210,12 @@ ifeq ($(ENABLE_CRANELIFT), 1)
211
210
ifneq (, $(filter 1, $(IS_DARWIN) $(IS_LINUX)))
212
211
ifeq ($(IS_AMD64), 1)
213
212
ifneq ($(LIBC), musl)
214
- compilers_engines += cranelift-shared-object
213
+ compilers_engines += cranelift-dylib
215
214
endif
216
215
else ifeq ($(IS_AARCH64), 1)
217
216
# The object crate doesn't support yet Darwin + Aarch64 relocations
218
217
ifneq ($(IS_DARWIN), 1)
219
- compilers_engines += cranelift-shared-object
218
+ compilers_engines += cranelift-dylib
220
219
endif
221
220
endif
222
221
endif
@@ -230,9 +229,9 @@ ifeq ($(ENABLE_LLVM), 1)
230
229
ifneq (, $(filter 1, $(IS_DARWIN) $(IS_LINUX)))
231
230
ifeq ($(IS_AMD64), 1)
232
231
compilers_engines += llvm-universal
233
- compilers_engines += llvm-shared-object
232
+ compilers_engines += llvm-dylib
234
233
else ifeq ($(IS_AARCH64), 1)
235
- compilers_engines += llvm-shared-object
234
+ compilers_engines += llvm-dylib
236
235
endif
237
236
endif
238
237
endif
@@ -301,7 +300,7 @@ capi_compilers_engines_exclude :=
301
300
# LLVM for the moment because it causes the linker to fail since LLVM is not statically linked.
302
301
# TODO: Reenable LLVM in C-API
303
302
capi_compiler_features := --features $(subst $(space ) ,$(comma ) ,$(filter-out llvm, $(compilers ) ) )
304
- capi_compilers_engines_exclude += llvm-universal llvm-shared-object
303
+ capi_compilers_engines_exclude += llvm-universal llvm-dylib
305
304
306
305
# We exclude singlepass-universal because it doesn't support multivalue (required in wasm-c-api tests)
307
306
capi_compilers_engines_exclude += singlepass-universal
@@ -424,59 +423,59 @@ endif
424
423
425
424
build-docs-capi : capi-setup
426
425
cd lib/c-api/doc/deprecated/ && doxygen doxyfile
427
- RUSTFLAGS=" ${RUSTFLAGS} " cargo doc --manifest-path lib/c-api/Cargo.toml --no-deps --features wat,universal,object-file,shared-object ,cranelift,wasi $(capi_default_features )
426
+ RUSTFLAGS=" ${RUSTFLAGS} " cargo doc --manifest-path lib/c-api/Cargo.toml --no-deps --features wat,universal,object-file,dylib ,cranelift,wasi $(capi_default_features )
428
427
429
428
build-capi : capi-setup
430
429
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
431
- --no-default-features --features deprecated,wat,universal,shared-object ,object-file,wasi,middlewares $(capi_default_features ) $(capi_compiler_features )
430
+ --no-default-features --features deprecated,wat,universal,dylib ,object-file,wasi,middlewares $(capi_default_features ) $(capi_compiler_features )
432
431
433
432
build-capi-singlepass : capi-setup
434
433
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
435
- --no-default-features --features deprecated,wat,universal,shared-object ,object-file,singlepass,wasi,middlewares $(capi_default_features )
434
+ --no-default-features --features deprecated,wat,universal,dylib ,object-file,singlepass,wasi,middlewares $(capi_default_features )
436
435
437
436
build-capi-singlepass-universal : capi-setup
438
437
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
439
438
--no-default-features --features deprecated,wat,universal,singlepass,wasi,middlewares $(capi_default_features )
440
439
441
- build-capi-singlepass-shared-object : capi-setup
440
+ build-capi-singlepass-dylib : capi-setup
442
441
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
443
- --no-default-features --features deprecated,wat,shared-object ,singlepass,wasi,middlewares $(capi_default_features )
442
+ --no-default-features --features deprecated,wat,dylib ,singlepass,wasi,middlewares $(capi_default_features )
444
443
445
444
build-capi-singlepass-object-file : capi-setup
446
445
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
447
446
--no-default-features --features deprecated,wat,object-file,singlepass,wasi,middlewares $(capi_default_features )
448
447
449
448
build-capi-cranelift : capi-setup
450
449
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
451
- --no-default-features --features deprecated,wat,universal,shared-object ,object-file,cranelift,wasi,middlewares $(capi_default_features )
450
+ --no-default-features --features deprecated,wat,universal,dylib ,object-file,cranelift,wasi,middlewares $(capi_default_features )
452
451
453
452
build-capi-cranelift-system-libffi : capi-setup
454
453
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
455
- --no-default-features --features deprecated,wat,universal,shared-object ,object-file,cranelift,wasi,middlewares,system-libffi $(capi_default_features )
454
+ --no-default-features --features deprecated,wat,universal,dylib ,object-file,cranelift,wasi,middlewares,system-libffi $(capi_default_features )
456
455
457
456
build-capi-cranelift-universal : capi-setup
458
457
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
459
458
--no-default-features --features deprecated,wat,universal,cranelift,wasi,middlewares $(capi_default_features )
460
459
461
- build-capi-cranelift-shared-object : capi-setup
460
+ build-capi-cranelift-dylib : capi-setup
462
461
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
463
- --no-default-features --features deprecated,wat,shared-object ,cranelift,wasi,middlewares $(capi_default_features )
462
+ --no-default-features --features deprecated,wat,dylib ,cranelift,wasi,middlewares $(capi_default_features )
464
463
465
464
build-capi-cranelift-object-file : capi-setup
466
465
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
467
- --no-default-features --features deprecated,wat,shared-object ,object-file,cranelift,wasi,middlewares $(capi_default_features )
466
+ --no-default-features --features deprecated,wat,dylib ,object-file,cranelift,wasi,middlewares $(capi_default_features )
468
467
469
468
build-capi-llvm : capi-setup
470
469
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
471
- --no-default-features --features deprecated,wat,universal,shared-object ,object-file,llvm,wasi,middlewares $(capi_default_features )
470
+ --no-default-features --features deprecated,wat,universal,dylib ,object-file,llvm,wasi,middlewares $(capi_default_features )
472
471
473
472
build-capi-llvm-universal : capi-setup
474
473
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
475
474
--no-default-features --features deprecated,wat,universal,llvm,wasi,middlewares $(capi_default_features )
476
475
477
- build-capi-llvm-shared-object : capi-setup
476
+ build-capi-llvm-dylib : capi-setup
478
477
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
479
- --no-default-features --features deprecated,wat,shared-object ,llvm,wasi,middlewares $(capi_default_features )
478
+ --no-default-features --features deprecated,wat,dylib ,llvm,wasi,middlewares $(capi_default_features )
480
479
481
480
build-capi-llvm-object-file : capi-setup
482
481
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
@@ -488,17 +487,17 @@ build-capi-headless-universal: capi-setup
488
487
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
489
488
--no-default-features --features universal,wasi
490
489
491
- build-capi-headless-shared-object : capi-setup
490
+ build-capi-headless-dylib : capi-setup
492
491
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
493
- --no-default-features --features shared-object ,wasi
492
+ --no-default-features --features dylib ,wasi
494
493
495
494
build-capi-headless-object-file : capi-setup
496
495
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
497
496
--no-default-features --features object-file,wasi
498
497
499
498
build-capi-headless-all : capi-setup
500
499
RUSTFLAGS=" ${RUSTFLAGS} " cargo build --manifest-path lib/c-api/Cargo.toml --release \
501
- --no-default-features --features universal,shared-object ,object-file,wasi
500
+ --no-default-features --features universal,dylib ,object-file,wasi
502
501
503
502
# ##########
504
503
# Testing #
@@ -521,20 +520,20 @@ test-packages:
521
520
522
521
test-compilers-compat : $(foreach compiler,$(compilers ) ,test-$(compiler ) )
523
522
524
- test-singlepass-shared-object :
525
- cargo test --release --tests $(compiler_features ) -- singlepass::shared-object
523
+ test-singlepass-dylib :
524
+ cargo test --release --tests $(compiler_features ) -- singlepass::dylib
526
525
527
526
test-singlepass-universal :
528
527
cargo test --release --tests $(compiler_features ) -- singlepass::universal
529
528
530
- test-cranelift-shared-object :
531
- cargo test --release --tests $(compiler_features ) -- cranelift::shared-object
529
+ test-cranelift-dylib :
530
+ cargo test --release --tests $(compiler_features ) -- cranelift::dylib
532
531
533
532
test-cranelift-universal :
534
533
cargo test --release --tests $(compiler_features ) -- cranelift::universal
535
534
536
- test-llvm-shared-object :
537
- cargo test --release --tests $(compiler_features ) -- llvm::shared-object
535
+ test-llvm-dylib :
536
+ cargo test --release --tests $(compiler_features ) -- llvm::dylib
538
537
539
538
test-llvm-universal :
540
539
cargo test --release --tests $(compiler_features ) -- llvm::universal
@@ -551,7 +550,7 @@ test-capi: build-capi package-capi $(foreach compiler_engine,$(capi_compilers_en
551
550
552
551
test-capi-crate-% :
553
552
WASMER_CAPI_CONFIG=$(shell echo $@ | sed -e s/test-capi-crate-//) cargo test --manifest-path lib/c-api/Cargo.toml --release \
554
- --no-default-features --features deprecated,wat,universal,shared-object ,object-file,wasi,middlewares $(capi_default_features ) $(capi_compiler_features ) -- --nocapture
553
+ --no-default-features --features deprecated,wat,universal,dylib ,object-file,wasi,middlewares $(capi_default_features ) $(capi_compiler_features ) -- --nocapture
555
554
556
555
test-capi-integration-% :
557
556
# Test the Wasmer C API tests for C
0 commit comments