summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-18 15:52:13 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-18 17:22:14 -0700
commit58d3a0522e03c1f0e486dc1d0fa8dec06a1ce5b5 (patch)
tree8c50b1d53bcc1de3bbe514b119667e2ade758cca /crawl-ref/source/util
parentdee470bf63c25c3d99ea89e9d9f5979ab01d53bb (diff)
downloadcrawl-ref-58d3a0522e03c1f0e486dc1d0fa8dec06a1ce5b5.tar.gz
crawl-ref-58d3a0522e03c1f0e486dc1d0fa8dec06a1ce5b5.zip
gcc-opt.pl: use gcc-opt-x86.pl for x86_64 as well
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/util')
-rwxr-xr-xcrawl-ref/source/util/gcc-opt.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/util/gcc-opt.pl b/crawl-ref/source/util/gcc-opt.pl
index 5ed4e48f64..5981876984 100755
--- a/crawl-ref/source/util/gcc-opt.pl
+++ b/crawl-ref/source/util/gcc-opt.pl
@@ -28,7 +28,7 @@ my $arch = `uname -m`;
#
# Matches ix86, i386, i486, i586, i686
#
-my $pattern = "i([x3-6])86";
+my $pattern = "i([x3-6])86|x86_64";
if ($arch =~ $pattern) {
system("util/gcc-opt-x86.pl $gcc");
exit 0