search for: 65633

Displaying 7 results from an estimated 7 matches for "65633".

Did you mean: 65533
2009 Feb 27
4
[LLVMdev] -fPIC warning on every compile on Cygwin
...t; >> of $(LLVM_ON_WIN32) ? The only way I can think of this happening is if > >> that's erroneously false. > > This works for me: > > Index: Makefile.rules > =================================================================== > --- Makefile.rules (revision 65633) > +++ Makefile.rules (working copy) > @@ -298,6 +298,8 @@ > # Common symbols not allowed in dylib files > CXX.Flags += -fno-common > C.Flags += -fno-common > + else ifeq ($(OS),Cygwin) > + # Nothing. Cygwin defaults to PIC and warns when given...
2009 Feb 27
0
[LLVMdev] -fPIC warning on every compile on Cygwin
...32) ? The only way I can think of this happening is if >> >> that's erroneously false. >> >> This works for me: >> >> Index: Makefile.rules >> =================================================================== >> --- Makefile.rules (revision 65633) >> +++ Makefile.rules (working copy) >> @@ -298,6 +298,8 @@ >> # Common symbols not allowed in dylib files >> CXX.Flags += -fno-common >> C.Flags += -fno-common >> + else ifeq ($(OS),Cygwin) >> + # Nothing. Cygwin defaults...
2009 Mar 02
0
[LLVMdev] Fw: -fPIC warning on every compile on Cygwin
...The only way I can think of this happening is if >> that's erroneously false. This works for me: Index: Makefile.rules =================================================================== --- Makefile.rules (revision 65633) +++ Makefile.rules (working copy) @@ -298,6 +298,8 @@ # Common symbols not allowed in dylib files CXX.Flags += -fno-common C.Flags += -fno-common + else ifeq ($(OS),Cygwin) + # Nothing. Cy...
2009 Mar 03
0
[LLVMdev] -fPIC warning on every compile on Cygwin
...>> that's erroneously false. > > This works for me: > > Index: Makefile.rules > > =================================================================== > --- Makefile.rules (revision 65633) > +++ Makefile.rules (working copy) > @@ -298,6 +298,8 @@ > # Common symbols not allowed in dylib files > CXX.Flags += -fno-common > C.Flags += -fno-common > + el...
2009 Feb 27
0
[LLVMdev] -fPIC warning on every compile on Cygwin
...or something to print out the value >> of $(LLVM_ON_WIN32) ? The only way I can think of this happening is if >> that's erroneously false. This works for me: Index: Makefile.rules =================================================================== --- Makefile.rules (revision 65633) +++ Makefile.rules (working copy) @@ -298,6 +298,8 @@ # Common symbols not allowed in dylib files CXX.Flags += -fno-common C.Flags += -fno-common + else ifeq ($(OS),Cygwin) + # Nothing. Cygwin defaults to PIC and warns when given -fPIC else # Linux a...
2009 Feb 27
3
[LLVMdev] -fPIC warning on every compile on Cygwin
> Could you please rig Makefile.rules or something to print out the value > of $(LLVM_ON_WIN32) ? The only way I can think of this happening is if > that's erroneously false. The configure script sets LLVM_ON_UNIX, not LLVM_ON_WIN32, for Cygwin: case $host in ... *-*-cygwin*) llvm_cv_link_all_option="-Wl,--whole-archive"
2009 Feb 27
1
[LLVMdev] -fPIC warning on every compile on Cygwin
...t;>> of $(LLVM_ON_WIN32) ? The only way I can think of this happening is if >>> that's erroneously false. > > This works for me: > > Index: Makefile.rules > =================================================================== > --- Makefile.rules (revision 65633) > +++ Makefile.rules (working copy) > @@ -298,6 +298,8 @@ > # Common symbols not allowed in dylib files > CXX.Flags += -fno-common > C.Flags += -fno-common > + else ifeq ($(OS),Cygwin) > + # Nothing. Cygwin defaults to PIC and warns when giv...