diff options
author | John Criswell <criswell@uiuc.edu> | 2003-07-01 22:07:39 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-07-01 22:07:39 +0000 |
commit | 7659545ceef542dc9951673e1f9085ef2d045699 (patch) | |
tree | 0ff3debe799740ebaf89d46d647a7926fbba8e24 /Makefile.config.in | |
parent | cb27f1e96dd64722d50fcfedc09d8b4e82e67345 (diff) | |
download | external_llvm-7659545ceef542dc9951673e1f9085ef2d045699.zip external_llvm-7659545ceef542dc9951673e1f9085ef2d045699.tar.gz external_llvm-7659545ceef542dc9951673e1f9085ef2d045699.tar.bz2 |
Added the ARCH variable so that some of the Makefiles can perform actions based
upon the target hardware architecture (as opposed to always checking the OS).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7050 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 9480219..e3fe521 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -9,6 +9,11 @@ # OS=@OS@ +# +# Target hardware architecture +# +ARCH=@ARCH@ + # Path to the C++ compiler to use. This is an optional setting, which defaults # to whatever your gmake defaults to. # |