Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3532,6 +3532,8 @@ else
AC_DEFINE(SIZEOF_REGISTER,SIZEOF_VOID_P,[size of machine integer registers])
fi

AC_SUBST(SIZEOF_VOID_P,[$ac_cv_sizeof_void_p])

if test "x$target_byte_order" = "xG_BIG_ENDIAN"; then
AC_DEFINE(TARGET_BYTE_ORDER,G_BIG_ENDIAN,[byte order of target])
elif test "x$target_byte_order" = "xG_LITTLE_ENDIAN"; then
Expand Down
7 changes: 6 additions & 1 deletion mono/mini/Makefile.am.in
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,7 @@ test_sources = \
basic-calls.cs \
basic-long.cs \
bench.cs \
builtin-types.cs \
objects.cs \
arrays.cs \
basic-float.cs \
Expand All @@ -519,6 +520,7 @@ regtests_UNIVERSAL = \
basic-float.exe \
basic-long.exe \
basic-calls.exe \
builtin-types.exe \
objects.exe \
arrays.exe \
basic-math.exe \
Expand All @@ -533,7 +535,7 @@ regtests_UNIVERSAL = \
regtests_DISABLED =

if FULL_AOT_TESTS
regtests_DISABLED +=
regtests_DISABLED += builtin-types.exe
endif

regtests = $(filter-out $(regtests_DISABLED),$(regtests_UNIVERSAL))
Expand Down Expand Up @@ -651,6 +653,9 @@ basic-simd.exe: basic-simd.cs TestDriver.dll
basic-vectors.exe: basic-vectors.cs TestDriver.dll
$(MCS) -out:$@ $(CSFLAGS) $< -r:TestDriver.dll -r:$(CLASS)/System.Numerics.dll -r:$(CLASS)/System.Numerics.Vectors.dll

builtin-types.exe: builtin-types.cs TestDriver.dll
$(MCS) -out:$@ $(CSFLAGS) -define:ARCH_$(shell echo $$((8 * $(SIZEOF_VOID_P)))) $< -r:TestDriver.dll

nacl.exe: nacl.cs TestDriver.dll
$(MCS) -out:$@ $(CSFLAGS) $< -r:TestDriver.dll -r:$(CLASS)/Mono.Simd.dll

Expand Down
Loading