diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2015-11-19 12:55:35 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2015-11-19 13:24:33 +0100 |
commit | c5d8162d230c373b2b49ec94d3f9a027ff6e2dd6 (patch) | |
tree | 8dd134ff4a96f8e7291f0dc382d818ec69a50db2 /compiler/main/DynFlags.hs | |
parent | 7dfde0e8263f123c2a21dde50027fa97a20500ec (diff) | |
download | haskell-c5d8162d230c373b2b49ec94d3f9a027ff6e2dd6.tar.gz |
Make GHC aware of OSAIX and AixLD
GHC needs to be aware of targetting AIX because
AIX requires some special handling for the toolchain
(similiar to Solaris)
Reviewers: austin, bgamari
Reviewed By: bgamari
Subscribers: thomie, erikd
Differential Revision: https://phabricator.haskell.org/D1501
Diffstat (limited to 'compiler/main/DynFlags.hs')
-rw-r--r-- | compiler/main/DynFlags.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 014a11ef7a..19df18e677 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -4369,6 +4369,7 @@ data LinkerInfo | GnuGold [Option] | DarwinLD [Option] | SolarisLD [Option] + | AixLD [Option] | UnknownLD deriving Eq |