[llvm-commits] [hlvm] r38125 - /hlvm/trunk/build/hlvm.py

Reid Spencer reid at x10sys.com
Sat Jul 7 17:00:06 PDT 2007


Author: reid
Date: Sat Jul  7 19:00:06 2007
New Revision: 38125

URL: http://llvm.org/viewvc/llvm-project?rev=38125&view=rev
Log:
Save the options information after the environment has been configured.
This causes configuration values to be stored.

Modified:
    hlvm/trunk/build/hlvm.py

Modified: hlvm/trunk/build/hlvm.py
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/build/hlvm.py?rev=38125&r1=38124&r2=38125&view=diff

==============================================================================
--- hlvm/trunk/build/hlvm.py (original)
+++ hlvm/trunk/build/hlvm.py Sat Jul  7 19:00:06 2007
@@ -102,7 +102,6 @@
   opts.Add('with_xsltproc','Specify where the XSLT processor is located',
            '/usr/local/bin/xsltproc')
   opts.Update(env)
-  opts.Save('.options_cache',env)
   env['HLVM_Copyright'] = 'Copyright (c) 2006 Reid Spencer'
   env['HLVM_Maintainer'] = 'Reid Spencer <rspencer at reidspencer>'
   env['HLVM_Version'] = '0.1svn'
@@ -191,5 +190,6 @@
 """ + opts.GenerateHelpText(env,sort=cmp))
   print "HLVM BUILD MODE:", VariantName
   ConfigureHLVM(env)
+  opts.Save('.options_cache',env)
   return env
 





More information about the llvm-commits mailing list