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
36e77401
Kaydet (Commit)
36e77401
authored
Nis 08, 2012
tarafından
David Tardon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
add function for converting path to URL
üst
814484b2
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
8 deletions
+25
-8
CppunitTest_pdfimport.mk
sdext/CppunitTest_pdfimport.mk
+1
-1
CppunitTest.mk
solenv/gbuild/CppunitTest.mk
+4
-7
WNT_INTEL_GCC.mk
solenv/gbuild/platform/WNT_INTEL_GCC.mk
+5
-0
WNT_INTEL_MSC.mk
solenv/gbuild/platform/WNT_INTEL_MSC.mk
+5
-0
com_GCC_defs.mk
solenv/gbuild/platform/com_GCC_defs.mk
+5
-0
solaris.mk
solenv/gbuild/platform/solaris.mk
+5
-0
No files found.
sdext/CppunitTest_pdfimport.mk
Dosyayı görüntüle @
36e77401
...
...
@@ -28,7 +28,7 @@
$(eval $(call gb_CppunitTest_CppunitTest,sdext_pdfimport))
$(eval $(call gb_CppunitTest_add_defs,sdext_pdfimport,\
-DPDFIMPORT_EXECUTABLE_LOCATION=\"$(call gb_
CppunitTarget_
_make_url,\
-DPDFIMPORT_EXECUTABLE_LOCATION=\"$(call gb_
Helper
_make_url,\
$(dir $(call gb_Executable_get_target,xpdfimport)))\" \
))
...
...
solenv/gbuild/CppunitTest.mk
Dosyayı görüntüle @
36e77401
...
...
@@ -57,20 +57,17 @@ endif
gb_CppunitTest__get_linktargetname = CppunitTest/$(call gb_CppunitTest_get_filename,$(1))
# TODO: move this to platform under suitable name
gb_CppunitTarget__make_url = file://$(if $(filter WNT,$(OS_FOR_BUILD)),/)$(strip $(1))
define gb_CppunitTest__make_args
--headless \
$(if $(strip $(CONFIGURATION_LAYERS)),\
"-env:CONFIGURATION_LAYERS=$(strip $(CONFIGURATION_LAYERS))") \
$(if $(strip $(UNO_TYPES)),\
"-env:UNO_TYPES=$(foreach item,$(UNO_TYPES),$(call gb_
CppunitTarget_
_make_url,$(item)))") \
"-env:UNO_TYPES=$(foreach item,$(UNO_TYPES),$(call gb_
Helper
_make_url,$(item)))") \
$(if $(strip $(UNO_SERVICES)),\
"-env:UNO_SERVICES=$(foreach item,$(UNO_SERVICES),$(call gb_
CppunitTarget_
_make_url,$(item)))") \
"-env:UNO_SERVICES=$(foreach item,$(UNO_SERVICES),$(call gb_
Helper
_make_url,$(item)))") \
$(if $(URE),\
$(foreach dir,URE_INTERNAL_LIB_DIR LO_LIB_DIR,\
-env:$(dir)=$(call gb_
CppunitTarget_
_make_url,$(gb_CppunitTest_LIBDIR))) \
-env:$(dir)=$(call gb_
Helper
_make_url,$(gb_CppunitTest_LIBDIR))) \
--protector unoexceptionprotector$(gb_Library_DLLEXT) unoexceptionprotector) \
$(ARGS)
endef
...
...
@@ -278,7 +275,7 @@ endef
gb_ComponentTarget__get_old_component_target = $(OUTDIR)/xml/$(1).component
define gb_CppunitTest__use_configuration
$(call gb_CppunitTest_get_target,$(1)) : CONFIGURATION_LAYERS += $(2):$(call gb_
CppunitTarget_
_make_url,$(3))
$(call gb_CppunitTest_get_target,$(1)) : CONFIGURATION_LAYERS += $(2):$(call gb_
Helper
_make_url,$(3))
endef
...
...
solenv/gbuild/platform/WNT_INTEL_GCC.mk
Dosyayı görüntüle @
36e77401
...
...
@@ -142,6 +142,11 @@ define gb_Helper_native_path
$(1)
endef
# Convert path to file URL.
define gb_Helper_make_url
file://$(strip $(1))
endef
# AsmObject class
gb_AsmObject_get_source = $(1)/$(2).s
...
...
solenv/gbuild/platform/WNT_INTEL_MSC.mk
Dosyayı görüntüle @
36e77401
...
...
@@ -267,6 +267,11 @@ define gb_Helper_native_path
$(shell cygpath -m $(1))
endef
# Convert path to file URL.
define gb_Helper_make_url
file:///$(strip $(1))
endef
# YaccTarget class
define gb_YaccTarget__command
...
...
solenv/gbuild/platform/com_GCC_defs.mk
Dosyayı görüntüle @
36e77401
...
...
@@ -176,6 +176,11 @@ define gb_Helper_native_path
$(1)
endef
# Convert path to file URL.
define gb_Helper_make_url
file://$(strip $(1))
endef
gb_Helper_OUTDIRLIBDIR := $(OUTDIR)/lib
gb_Helper_OUTDIR_FOR_BUILDLIBDIR := $(OUTDIR_FOR_BUILD)/lib
...
...
solenv/gbuild/platform/solaris.mk
Dosyayı görüntüle @
36e77401
...
...
@@ -164,6 +164,11 @@ define gb_Helper_native_path
$(1)
endef
# Convert path to file URL.
define gb_Helper_make_url
file://$(strip $(1))
endef
ifneq ($(HAVE_LD_BSYMBOLIC_FUNCTIONS),)
gb_LinkTarget_LDFLAGS += \
-Wl,--dynamic-list-cpp-new \
...
...
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