search for: cxxd

Displaying 5 results from an estimated 5 matches for "cxxd".

Did you mean: cxx
2005 Jul 23
2
[LLVMdev] Compile Failure
...ndling/llvm/llvm/include -I/Users/wendling/llvm/llvm/include -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -Wall -W -Wwrite-strings -Wno-unused -g -D_DEBUG -c -MD -MT /Users/wendling/llvm/llvm/lib/Target/Alpha/Debug/AlphaISelPattern.o -MP -MF /Users/wendling/llvm/llvm/lib/Target/Alpha/Debug/AlphaISelPattern.CXXd AlphaISelPattern.cpp -o /Users/wendling/llvm/llvm/lib/Target/Alpha/Debug/AlphaISelPattern.o ; \ then /bin/mv -f "/Users/wendling/llvm/llvm/lib/Target/Alpha/Debug/AlphaISelPattern.CXXd" "/Users/wendling/llvm/llvm/lib/Target/Alpha/Debug/AlphaISelPattern.d"; \ else /bin/rm -f &quot...
2005 Nov 28
2
[LLVMdev] Help setting up a llvm project
...ory.cc aot/mangle.cc I get the follwing error GC heuristics: --param ggc-min-expand=81 --param ggc-min-heapsize=95905 aot/aotclass.cc:301: fatal error: opening dependency file /media/WDC_Combo/home/memmel/GTK2.7/Qspin/Developer/Source/Languages/Core/Source/core/lib/compiler/gcjx/Debug/aot/aotclass.CXXd: No such file or directory compilation terminated. and trying to get them to had via LIBS as one big object file seems to fail also. Mike
2005 Nov 28
0
[LLVMdev] Help setting up a llvm project
...> I get the follwing error > GC heuristics: --param ggc-min-expand=81 --param ggc-min-heapsize=95905 > aot/aotclass.cc:301: fatal error: opening dependency file > /media/WDC_Combo/home/memmel/GTK2.7/Qspin/Developer/Source/Languages/Core/Source/core/lib/compiler/gcjx/Debug/aot/aotclass.CXXd: > No such file or directory > compilation terminated. This is telling you that it couldn't find the dependency file for C++. That's because there's no "aot" directory in the Debug directory (where the dependency files are normally placed). That's probably a bug...
2005 May 19
3
[LLVMdev] [Cygwin] llvm 'make install' build errors
Reid, I think it is the first time it is run that the errors occcur !? Not sure but that would seem logical. Aaron
2004 Oct 23
1
[LLVMdev] UPDATE: Makefile.rules Changes (IMPORTANT)
...Shared Library" > - $(VERB) if $(LTCXXCompile) -MD -MT $@ -MP -MF $(OBJDIR)/$*.Td $< -o $@ ; \ > - then mv -f "$(OBJDIR)/$*.Td" "$(OBJDIR)/$*.d"; else rm -f "$(OBJDIR)/$*.Td"; exit 1; fi > + $(VERB) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(OBJDIR)/$*.LACXXd $< -o $@ ; \ > + then $(MV) -f "$(OBJDIR)/$*.LACXXd" "$(OBJDIR)/$*.d"; \ > + else $(RM) -f "$(OBJDIR)/$*.LACXXd"; exit 1; fi > + > +$(OBJDIR)/%.lo $(OBJDIR)/%.o: %.c $(OBJDIR)/.dir > + @$(ECHO) "Compiling $(CONFIGURATION) $*.c For Shared...