freebsd.mk (1bb309c6) freebsd.mk (6bf52fda)
1#*************************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 276 unchanged lines hidden (view full) ---

285$(call gb_Helper_abbreviate_dirs,\
286 mkdir -p $(dir $(1)) && \
287 $(gb_CXX) \
288 $(if $(filter Library,$(TARGETTYPE)),$(gb_Library_TARGETTYPEFLAGS)) \
289 $(if $(VERSIONMAP),$(gb_Library_VERSIONMAPFLAG) $(VERSIONMAP)) \
290 $(if $(call gb_Library_is_udk_versioned,$(1)),-Wl$(COMMA)-h$(notdir $(1)).$(gb_UDK_MAJOR)) \
291 $(subst \d,$$,$(RPATH)) \
292 $(T_LDFLAGS) \
1#*************************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 276 unchanged lines hidden (view full) ---

285$(call gb_Helper_abbreviate_dirs,\
286 mkdir -p $(dir $(1)) && \
287 $(gb_CXX) \
288 $(if $(filter Library,$(TARGETTYPE)),$(gb_Library_TARGETTYPEFLAGS)) \
289 $(if $(VERSIONMAP),$(gb_Library_VERSIONMAPFLAG) $(VERSIONMAP)) \
290 $(if $(call gb_Library_is_udk_versioned,$(1)),-Wl$(COMMA)-h$(notdir $(1)).$(gb_UDK_MAJOR)) \
291 $(subst \d,$$,$(RPATH)) \
292 $(T_LDFLAGS) \
293 $(foreach object,$(ASMOBJECTS),$(call gb_AsmObject_get_target,$(object))) \
293 $(foreach object,$(COBJECTS),$(call gb_CObject_get_target,$(object))) \
294 $(foreach object,$(CXXOBJECTS),$(call gb_CxxObject_get_target,$(object))) \
295 $(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_target,$(object))) \
296 -Wl$(COMMA)--start-group $(foreach lib,$(LINKED_STATIC_LIBS),$(call gb_StaticLibrary_get_target,$(lib))) -Wl$(COMMA)--end-group \
297 $(patsubst lib%.so,-l%,$(foreach lib,$(LINKED_LIBS),$(call gb_Library_get_filename,$(lib)))) \
298 $(patsubst %,-l%,$(EXTERNAL_LIBS)) \
299 $(LIBS) \
300 -o $(if $(call gb_Library_is_udk_versioned,$(1)),$(1).$(gb_UDK_MAJOR),$(1)))

--- 204 unchanged lines hidden ---
294 $(foreach object,$(COBJECTS),$(call gb_CObject_get_target,$(object))) \
295 $(foreach object,$(CXXOBJECTS),$(call gb_CxxObject_get_target,$(object))) \
296 $(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_target,$(object))) \
297 -Wl$(COMMA)--start-group $(foreach lib,$(LINKED_STATIC_LIBS),$(call gb_StaticLibrary_get_target,$(lib))) -Wl$(COMMA)--end-group \
298 $(patsubst lib%.so,-l%,$(foreach lib,$(LINKED_LIBS),$(call gb_Library_get_filename,$(lib)))) \
299 $(patsubst %,-l%,$(EXTERNAL_LIBS)) \
300 $(LIBS) \
301 -o $(if $(call gb_Library_is_udk_versioned,$(1)),$(1).$(gb_UDK_MAJOR),$(1)))

--- 204 unchanged lines hidden ---