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

use DOCEKR_IMAGE=arm64v8/debian:unstable #422

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ matrix:
- env: DOCKER_IMAGE=debian:stretch
- env: DOCKER_IMAGE=osrf/debian_arm64:stretch
- env: QEMU=amd64 DOCKER_IMAGE=amd64/debian:unstable # amd64
- env: QEMU=aarch64 DOCKER_IMAGE=arm64v8/debian:buster # arm64
- env: QEMU=arm DOCKER_IMAGE=arm32v5/debian:jessie # armel
- env: QEMU=arm DOCKER_IMAGE=arm32v7/debian:jessie # armhf
- env: QEMU=aarch64 DOCKER_IMAGE=arm64v8/debian:unstable # arm64
- env: QEMU=arm DOCKER_IMAGE=arm32v5/debian:unstable # armel
- env: QEMU=arm DOCKER_IMAGE=arm32v7/debian:unstable # armhf
# hppa
# hurd-i386
- env: QEMU=i386 DOCKER_IMAGE=i386/debian:unstable # i386
Expand Down
2 changes: 1 addition & 1 deletion lisp/Makefile.Linux
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ CFLAGS:= $(CFLAGS) $(CPPFLAGS) $(WFLAGS) -D$(MACHINE) -DLinux -D_REENTRANT -DVER

# machine specific CFLAGS
ifneq ($(shell gcc -dumpmachine | egrep "^(arm|aarch)"),)
ADD_LDFLAGS=-Wl,-z,execstack
ADD_LDFLAGS+=-Wl,-z,execstack
CFLAGS+=-DARM -fPIC
ARCH=LinuxARM
endif
Expand Down