[llvm-commits] [dragonegg] r142344 - /dragonegg/trunk/src/Backend.cpp
Duncan Sands
baldrick at free.fr
Tue Oct 18 01:25:20 PDT 2011
Author: baldrick
Date: Tue Oct 18 03:25:20 2011
New Revision: 142344
URL: http://llvm.org/viewvc/llvm-project?rev=142344&view=rev
Log:
Try to fix the dragonegg buildbots by disabling this new feature
(file directives with an explicit directory), which is not yet
supported by binutils.
Modified:
dragonegg/trunk/src/Backend.cpp
Modified: dragonegg/trunk/src/Backend.cpp
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/src/Backend.cpp?rev=142344&r1=142343&r2=142344&view=diff
==============================================================================
--- dragonegg/trunk/src/Backend.cpp (original)
+++ dragonegg/trunk/src/Backend.cpp Tue Oct 18 03:25:20 2011
@@ -340,6 +340,9 @@
if (flag_split_stack)
Args.push_back("--segmented-stacks");
#endif
+ // Binutils does not yet support this construct. FIXME: Once GCC learns to
+ // detect support for this, condition this on what GCC detected.
+ Args.push_back("--disable-dwarf-directory");
// If there are options that should be passed through to the LLVM backend
// directly from the command line, do so now. This is mainly for debugging
More information about the llvm-commits
mailing list