aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CompilerDriver/BuiltinOptions.cpp
AgeCommit message (Collapse)AuthorFilesLines
2010-08-20llvmc: Cut global namespace pollution.Mikhail Glushenkov1-1/+3
llvm-svn: 111619
2009-11-07llvmc: Add a '-time' option.Mikhail Glushenkov1-0/+2
llvm-svn: 86348
2009-07-09Rename -t to --temp-dir.Mikhail Glushenkov1-2/+2
-t is already used by gcc in the meaning 'ld -t' (trace). The Base plugin may want to emulate this behaviour. llvm-svn: 75162
2009-07-09Add a -t="dir" option to the driver. This can be used to specify the ↵Sanjiv Gupta1-0/+2
directory to be used as TempDir if somebody doesn't want to use the standard /tmp. llvm-svn: 75121
2009-07-06Reverting back the changes checked-in accidently.Sanjiv Gupta1-2/+1
llvm-svn: 74823
2009-07-06Implement _CONFIG macro to allow users to se to configuration settings on ↵Sanjiv Gupta1-1/+2
the part. Implement _section macro to allow users to place objects in specific sections. Implement _address macro to allow users to place objects at a particular address. Placing objects at a memory address: crate a unique section name from varname, address, object type and put that section at specified address. Mark this section a full (size = banksize) so that other objects do not compete for it while placing objects to sections in AsmPrinter. llvm-svn: 74822
2009-07-04LLVMC can be now compiled w/o dynamic plugin support.Mikhail Glushenkov1-0/+3
Controlled via the --enable-llvmc-dynamic-plugins option. llvm-svn: 74784
2009-06-29Make dynamic LLVMC plugins work on Windows (finally!).Mikhail Glushenkov1-0/+52
Implemented by making lib/CompilerDriver a shared library that holds all the global static data (CommandLine options, plugin registry) that we unfortunately have to live with. llvm-svn: 74417