diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-06-07 14:13:04 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-06-07 20:11:32 -0400 |
commit | 297879a78cc6ca4c27afb0cc863c8796b60da6e1 (patch) | |
tree | 09651c0eb7ff36a2d679b45f51a8c60a3c0fcc51 /utils/llvm-targets | |
parent | 6fbe5f274ba84181f5db50901639ae382ef68c4b (diff) | |
download | haskell-297879a78cc6ca4c27afb0cc863c8796b60da6e1.tar.gz |
Add support for FreeBSD arm
Test Plan: Tested on armv6, armv7 and aarch64 on FreeBSD 12-CURRENT.
Reviewers: bgamari
Reviewed By: bgamari
Subscribers: rwbarton, thomie, erikd, carter
Differential Revision: https://phabricator.haskell.org/D4810
Diffstat (limited to 'utils/llvm-targets')
-rwxr-xr-x | utils/llvm-targets/gen-data-layout.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/llvm-targets/gen-data-layout.sh b/utils/llvm-targets/gen-data-layout.sh index 7a65a3eb17..7b5f9e354b 100755 --- a/utils/llvm-targets/gen-data-layout.sh +++ b/utils/llvm-targets/gen-data-layout.sh @@ -39,6 +39,9 @@ TARGETS=( "i386-apple-darwin" "x86_64-apple-darwin" # iOS "armv7-apple-ios arm64-apple-ios" "i386-apple-ios x86_64-apple-ios" + + # FreeBSD ARM + "aarch64-unknown-freebsd" "armv6-unknown-freebsd-gnueabihf" "armv7-unknown-freebsd-gnueabihf" ) # given the call to clang -c11 that clang --target -v generates, |