Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Julia setup in buildsys, and test Julia GC integration on Travis #2905

Merged
merged 3 commits into from
Oct 9, 2018
Merged
Changes from 1 commit
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
Next Next commit
buildsys: use unique GAPARCH for Julia builds
  • Loading branch information
fingolfin committed Oct 9, 2018
commit 69cfcfe7ad1d36df1fa2c59d6991043d48578b67
10 changes: 7 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -557,9 +557,13 @@ AC_DEFINE_UNQUOTED([GAP_KERNEL_MINOR_VERSION], $gap_kernel_minor_version, [The m
dnl
dnl User setting: Compatibility mode (on by default)
dnl
AS_IF([test "x$enable_hpcgap" = xyes],
[GAPARCH="$host-hpcgap${ABI}-kv${gap_kernel_major_version}"],
[GAPARCH="$host-default${ABI}-kv${gap_kernel_major_version}"])
AS_IF(
[test "x$enable_hpcgap" = xyes],
[GAPARCH="$host-hpcgap${ABI}-kv${gap_kernel_major_version}"],
[test "x$with_julia" != xno],
[GAPARCH="$host-julia${ABI}-kv${gap_kernel_major_version}"],
# else
[GAPARCH="$host-default${ABI}-kv${gap_kernel_major_version}"])
AS_IF([test "x$ARCHEXT" != "x"],
[GAPARCH="$GAPARCH-$ARCHEXT"])
AS_IF([test "x$ARCH" != "x"],
Expand Down