Kaydet (Commit) dec68c66 authored tarafından David Tardon's avatar David Tardon

the build tools need to know executable extension

Change-Id: I44479648dd75142864503650494fb2e3f95fe719
üst 093fe6c5
...@@ -171,6 +171,18 @@ include $(SRCDIR)/Repository.mk ...@@ -171,6 +171,18 @@ include $(SRCDIR)/Repository.mk
include $(SRCDIR)/RepositoryExternal.mk include $(SRCDIR)/RepositoryExternal.mk
$(eval $(call gb_Helper_collect_libtargets)) $(eval $(call gb_Helper_collect_libtargets))
gb_Library_DLLPOSTFIX := lo
# Include platform/cpu/compiler specific config/definitions
include $(GBUILDDIR)/platform/$(OS)_$(CPUNAME)_$(COM).mk
ifeq ($(CROSS_COMPILING),YES)
# We can safely Assume all cross-compilation is from Unix systems.
gb_Executable_EXT_for_build :=
else
gb_Executable_EXT_for_build := $(gb_Executable_EXT)
endif
# Set up build tools that can be either internal or system. It is # Set up build tools that can be either internal or system. It is
# necessary to do it before we start including gbuild class makefiles, # necessary to do it before we start including gbuild class makefiles,
# so the classes can add dependencies on them. # so the classes can add dependencies on them.
...@@ -217,18 +229,6 @@ else ...@@ -217,18 +229,6 @@ else
gb_UCPPTARGET := $(call gb_Executable_get_target_for_build,ucpp) gb_UCPPTARGET := $(call gb_Executable_get_target_for_build,ucpp)
endif endif
gb_Library_DLLPOSTFIX := lo
# Include platform/cpu/compiler specific config/definitions
include $(GBUILDDIR)/platform/$(OS)_$(CPUNAME)_$(COM).mk
ifeq ($(CROSS_COMPILING),YES)
# We can safely Assume all cross-compilation is from Unix systems.
gb_Executable_EXT_for_build :=
else
gb_Executable_EXT_for_build := $(gb_Executable_EXT)
endif
include $(GBUILDDIR)/Tempfile.mk include $(GBUILDDIR)/Tempfile.mk
include $(SRCDIR)/RepositoryFixes.mk include $(SRCDIR)/RepositoryFixes.mk
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment