diff options
author | Martin Pitt <martinpitt@users.noreply.github.com> | 2017-02-27 20:54:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-27 20:54:11 +0100 |
commit | b1caafb2b1e0672a8e83b4bc4d54d2d057fa51a7 (patch) | |
tree | 1c0f6fe16a8d161fd2472fa9d992d250a3d9e461 | |
parent | 293b167349cd4e9e1980cf9095bbfe0e65bf9a9f (diff) |
build-sys: add LIB_ARCH_TUPLE for tilegx-linux-gnu (#5474)
Fix build failure on the tilegx architecture.
https://bugs.debian.org/856306
-rw-r--r-- | src/basic/architecture.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/architecture.h b/src/basic/architecture.h index d6b8603b06..b0a7de5dc9 100644 --- a/src/basic/architecture.h +++ b/src/basic/architecture.h @@ -187,7 +187,7 @@ int uname_architecture(void); # define LIB_ARCH_TUPLE "m68k-linux-gnu" #elif defined(__tilegx__) # define native_architecture() ARCHITECTURE_TILEGX -# error "Missing LIB_ARCH_TUPLE for TILEGX" +# define LIB_ARCH_TUPLE "tilegx-linux-gnu" #elif defined(__cris__) # define native_architecture() ARCHITECTURE_CRIS # error "Missing LIB_ARCH_TUPLE for CRIS" |