Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
6904e7d8
Kaydet (Commit)
6904e7d8
authored
Eyl 28, 2011
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Define LIBO_WERROR when warnings are errors
üst
bbec6182
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
22 additions
and
22 deletions
+22
-22
ios.mk
solenv/gbuild/platform/ios.mk
+2
-2
macosx.mk
solenv/gbuild/platform/macosx.mk
+2
-2
unxgcc.mk
solenv/gbuild/platform/unxgcc.mk
+2
-2
windows.mk
solenv/gbuild/platform/windows.mk
+2
-2
winmingw.mk
solenv/gbuild/platform/winmingw.mk
+2
-2
unxgcc.mk
solenv/inc/unxgcc.mk
+1
-1
unxiosr.mk
solenv/inc/unxiosr.mk
+1
-1
unxmacx.mk
solenv/inc/unxmacx.mk
+1
-1
unxsoli4.mk
solenv/inc/unxsoli4.mk
+2
-2
unxsols4.mk
solenv/inc/unxsols4.mk
+2
-2
unxsolu4.mk
solenv/inc/unxsolu4.mk
+2
-2
wntgcci.mk
solenv/inc/wntgcci.mk
+2
-2
wntmsc.mk
solenv/inc/wntmsc.mk
+1
-1
No files found.
solenv/gbuild/platform/ios.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -97,8 +97,8 @@ gb_OBJCXXFLAGS := -x objective-c++ $(gb_OBJC_OBJCXX_COMMON_FLAGS)
...
@@ -97,8 +97,8 @@ gb_OBJCXXFLAGS := -x objective-c++ $(gb_OBJC_OBJCXX_COMMON_FLAGS)
gb_OBJCFLAGS := -x objective-c $(gb_OBJC_OBJCXX_COMMON_FLAGS)
gb_OBJCFLAGS := -x objective-c $(gb_OBJC_OBJCXX_COMMON_FLAGS)
ifneq ($(EXTERNAL_WARNINGS_NOT_ERRORS),TRUE)
ifneq ($(EXTERNAL_WARNINGS_NOT_ERRORS),TRUE)
gb_CFLAGS_WERROR := -Werror
gb_CFLAGS_WERROR := -Werror
-DLIBO_WERROR
gb_CXXFLAGS_WERROR := -Werror
gb_CXXFLAGS_WERROR := -Werror
-DLIBO_WERROR
endif
endif
gb_LinkTarget_EXCEPTIONFLAGS := \
gb_LinkTarget_EXCEPTIONFLAGS := \
...
...
solenv/gbuild/platform/macosx.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -116,8 +116,8 @@ gb_OBJCXXFLAGS := -x objective-c++ -fobjc-exceptions
...
@@ -116,8 +116,8 @@ gb_OBJCXXFLAGS := -x objective-c++ -fobjc-exceptions
gb_OBJCFLAGS := -x objective-c
gb_OBJCFLAGS := -x objective-c
ifneq ($(EXTERNAL_WARNINGS_NOT_ERRORS),TRUE)
ifneq ($(EXTERNAL_WARNINGS_NOT_ERRORS),TRUE)
gb_CFLAGS_WERROR := -Werror
gb_CFLAGS_WERROR := -Werror
-DLIBO_WERROR
gb_CXXFLAGS_WERROR := -Werror
gb_CXXFLAGS_WERROR := -Werror
-DLIBO_WERROR
endif
endif
ifeq ($(ENABLE_LTO),TRUE)
ifeq ($(ENABLE_LTO),TRUE)
...
...
solenv/gbuild/platform/unxgcc.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -120,8 +120,8 @@ gb_CXXFLAGS += -fno-strict-aliasing
...
@@ -120,8 +120,8 @@ gb_CXXFLAGS += -fno-strict-aliasing
endif
endif
ifneq ($(EXTERNAL_WARNINGS_NOT_ERRORS),TRUE)
ifneq ($(EXTERNAL_WARNINGS_NOT_ERRORS),TRUE)
gb_CFLAGS_WERROR := -Werror
gb_CFLAGS_WERROR := -Werror
-DLIBO_WERROR
gb_CXXFLAGS_WERROR := -Werror
gb_CXXFLAGS_WERROR := -Werror
-DLIBO_WERROR
endif
endif
ifeq ($(HAVE_CXX0X),TRUE)
ifeq ($(HAVE_CXX0X),TRUE)
...
...
solenv/gbuild/platform/windows.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -181,8 +181,8 @@ gb_STDLIBS := \
...
@@ -181,8 +181,8 @@ gb_STDLIBS := \
advapi32 \
advapi32 \
ifneq ($(EXTERNAL_WARNINGS_NOT_ERRORS),TRUE)
ifneq ($(EXTERNAL_WARNINGS_NOT_ERRORS),TRUE)
gb_CFLAGS_WERROR := -WX
gb_CFLAGS_WERROR := -WX
-DLIBO_WERROR
gb_CXXFLAGS_WERROR := -WX
gb_CXXFLAGS_WERROR := -WX
-DLIBO_WERROR
endif
endif
gb_LinkTarget_EXCEPTIONFLAGS := \
gb_LinkTarget_EXCEPTIONFLAGS := \
...
...
solenv/gbuild/platform/winmingw.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -91,8 +91,8 @@ gb_CXXFLAGS := \
...
@@ -91,8 +91,8 @@ gb_CXXFLAGS := \
-pipe \
-pipe \
ifneq ($(EXTERNAL_WARNINGS_NOT_ERRORS),TRUE)
ifneq ($(EXTERNAL_WARNINGS_NOT_ERRORS),TRUE)
gb_CFLAGS_WERROR := -Werror
gb_CFLAGS_WERROR := -Werror
-DLIBO_WERROR
gb_CXXFLAGS_WERROR := -Werror
gb_CXXFLAGS_WERROR := -Werror
-DLIBO_WERROR
endif
endif
ifneq ($(SYSBASE),)
ifneq ($(SYSBASE),)
...
...
solenv/inc/unxgcc.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -138,7 +138,7 @@ CFLAGSWARNCXX=$(CFLAGSWARNCC) -Wshadow -Wno-ctor-dtor-privacy \
...
@@ -138,7 +138,7 @@ CFLAGSWARNCXX=$(CFLAGSWARNCC) -Wshadow -Wno-ctor-dtor-privacy \
-Wno-non-virtual-dtor -Woverloaded-virtual
-Wno-non-virtual-dtor -Woverloaded-virtual
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWERRCC=-Werror
CFLAGSWERRCC=-Werror
-DLIBO_WERROR
COMPILER_WARN_ERRORS=TRUE
COMPILER_WARN_ERRORS=TRUE
...
...
solenv/inc/unxiosr.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -95,7 +95,7 @@ CFLAGSWARNCC=-Wall -Wendif-labels
...
@@ -95,7 +95,7 @@ CFLAGSWARNCC=-Wall -Wendif-labels
CFLAGSWARNCXX=$(CFLAGSWARNCC) -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor
CFLAGSWARNCXX=$(CFLAGSWARNCC) -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWERRCC=-Werror
CFLAGSWERRCC=-Werror
-DLIBO_WERROR
LINK*=$(CXX)
LINK*=$(CXX)
LINKC*=$(CC)
LINKC*=$(CC)
...
...
solenv/inc/unxmacx.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -149,7 +149,7 @@ CFLAGSWARNCC=-Wall -Wendif-labels
...
@@ -149,7 +149,7 @@ CFLAGSWARNCC=-Wall -Wendif-labels
CFLAGSWARNCXX=$(CFLAGSWARNCC) -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor
CFLAGSWARNCXX=$(CFLAGSWARNCC) -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWERRCC=-Werror
CFLAGSWERRCC=-Werror
-DLIBO_WERROR
# All modules on this platform compile without warnings.
# All modules on this platform compile without warnings.
# If you need to set MODULES_WITH_WARNINGS here, comment
# If you need to set MODULES_WITH_WARNINGS here, comment
...
...
solenv/inc/unxsoli4.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -100,8 +100,8 @@ CFLAGSWARNCC=
...
@@ -100,8 +100,8 @@ CFLAGSWARNCC=
CFLAGSWARNCXX=+w2 -erroff=doubunder,identexpected,inllargeuse,inllargeint,notemsource,reftotemp,truncwarn,wnoretvalue,anonnotype
CFLAGSWARNCXX=+w2 -erroff=doubunder,identexpected,inllargeuse,inllargeint,notemsource,reftotemp,truncwarn,wnoretvalue,anonnotype
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWERRCC=-errwarn=%all
CFLAGSWERRCC=-errwarn=%all
-DLIBO_WERROR
CFLAGSWERRCXX=-xwe
CFLAGSWERRCXX=-xwe
-DLIBO_WERROR
# Once all modules on this platform compile without warnings, set
# Once all modules on this platform compile without warnings, set
# COMPILER_WARN_ERRORS=TRUE here instead of setting MODULES_WITH_WARNINGS (see
# COMPILER_WARN_ERRORS=TRUE here instead of setting MODULES_WITH_WARNINGS (see
...
...
solenv/inc/unxsols4.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -106,8 +106,8 @@ CFLAGSWARNCC=
...
@@ -106,8 +106,8 @@ CFLAGSWARNCC=
CFLAGSWARNCXX=+w2 -erroff=doubunder,identexpected,inllargeuse,inllargeint,notemsource,reftotemp,truncwarn,wnoretvalue,anonnotype
CFLAGSWARNCXX=+w2 -erroff=doubunder,identexpected,inllargeuse,inllargeint,notemsource,reftotemp,truncwarn,wnoretvalue,anonnotype
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWERRCC=-errwarn=%all
CFLAGSWERRCC=-errwarn=%all
-DLIBO_WERROR
CFLAGSWERRCXX=-xwe
CFLAGSWERRCXX=-xwe
-DLIBO_WERROR
# Once all modules on this platform compile without warnings, set
# Once all modules on this platform compile without warnings, set
# COMPILER_WARN_ERRORS=TRUE here instead of setting MODULES_WITH_WARNINGS (see
# COMPILER_WARN_ERRORS=TRUE here instead of setting MODULES_WITH_WARNINGS (see
...
...
solenv/inc/unxsolu4.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -105,8 +105,8 @@ CFLAGSWARNCC=
...
@@ -105,8 +105,8 @@ CFLAGSWARNCC=
CFLAGSWARNCXX=+w2 -erroff=doubunder,identexpected,inllargeuse,inllargeint,notemsource,reftotemp,truncwarn,wnoretvalue,hidef,anonnotype,unassigned,badargtype2w
CFLAGSWARNCXX=+w2 -erroff=doubunder,identexpected,inllargeuse,inllargeint,notemsource,reftotemp,truncwarn,wnoretvalue,hidef,anonnotype,unassigned,badargtype2w
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWERRCC=-errwarn=%all
CFLAGSWERRCC=-errwarn=%all
-DLIBO_WERROR
CFLAGSWERRCXX=-xwe
CFLAGSWERRCXX=-xwe
-DLIBO_WERROR
# Once all modules on this platform compile without warnings, set
# Once all modules on this platform compile without warnings, set
# COMPILER_WARN_ERRORS=TRUE here instead of setting MODULES_WITH_WARNINGS (see
# COMPILER_WARN_ERRORS=TRUE here instead of setting MODULES_WITH_WARNINGS (see
...
...
solenv/inc/wntgcci.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -84,8 +84,8 @@ CFLAGSWARNCXX=$(CFLAGSWARNCC) -Wshadow -Wno-ctor-dtor-privacy \
...
@@ -84,8 +84,8 @@ CFLAGSWARNCXX=$(CFLAGSWARNCC) -Wshadow -Wno-ctor-dtor-privacy \
-Wno-non-virtual-dtor
-Wno-non-virtual-dtor
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWERRCC=-Werror
CFLAGSWERRCC=-Werror
-DLIBO_WERROR
CFLAGSWERRCXX=-Werror
CFLAGSWERRCXX=-Werror
-DLIBO_WERROR
MODULES_WITH_WARNINGS := \
MODULES_WITH_WARNINGS := \
b_server \
b_server \
...
...
solenv/inc/wntmsc.mk
Dosyayı görüntüle @
6904e7d8
...
@@ -201,7 +201,7 @@ CFLAGSWARNCXX=-Wall -wd4061 -wd4127 -wd4191 -wd4217 -wd4250 -wd4251 -wd4275 \
...
@@ -201,7 +201,7 @@ CFLAGSWARNCXX=-Wall -wd4061 -wd4127 -wd4191 -wd4217 -wd4250 -wd4251 -wd4275 \
CFLAGSWARNCC=$(CFLAGSWARNCXX) -wd4255
CFLAGSWARNCC=$(CFLAGSWARNCXX) -wd4255
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCC=$(CFLAGSWARNCC)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWALLCXX=$(CFLAGSWARNCXX)
CFLAGSWERRCC=-WX
CFLAGSWERRCC=-WX
-DLIBO_WERROR
# Once all modules on this platform compile without warnings, set
# Once all modules on this platform compile without warnings, set
# COMPILER_WARN_ERRORS=TRUE here instead of setting MODULES_WITH_WARNINGS (see
# COMPILER_WARN_ERRORS=TRUE here instead of setting MODULES_WITH_WARNINGS (see
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment