summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2012-04-29 21:47:31 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2012-04-29 21:47:31 +0000
commit651da72fe8631da13703cb48ccb1bcdfa6af65d4 (patch)
tree483706b742d037a78eb4952210a16be9b2c20793 /makefile
parent9cc17ba1f662ef386b8d459af0df407846756e3c (diff)
optimized optimization options :p
Diffstat (limited to 'makefile')
-rw-r--r--makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/makefile b/makefile
index eb6e573258b..573ec648cac 100644
--- a/makefile
+++ b/makefile
@@ -163,9 +163,10 @@ endif
# uncomment and specify architecture-specific optimizations here
# some examples:
-# optimize for I686: ARCHOPTS = -march=pentiumpro
-# optimize for Core 2: ARCHOPTS = -march=core2
-# optimize for G4: ARCHOPTS = -mcpu=G4
+# ARCHOPTS = -march=pentiumpro # optimize for I686
+# ARCHOPTS = -march=core2 # optimize for Core 2
+# ARCHOPTS = -march=native # optimize for local machine (auto detect)
+# ARCHOPTS = -mcpu=G4 # optimize for G4
# note that we leave this commented by default so that you can
# configure this in your environment and never have to think about it
# ARCHOPTS =