/aosp_15_r20/external/openthread/third_party/mbedtls/repo/programs/ |
H A D | Makefile | 151 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) aes/crypt_and_hash.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 155 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) cipher/cipher_aead_demo.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 159 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) hash/generic_sum.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 163 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) hash/hello.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 167 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) hash/md_hmac_demo.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 171 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) pkey/dh_client.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 175 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) pkey/dh_genprime.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 179 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) pkey/dh_server.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 183 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) pkey/ecdh_curve25519.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 187 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) pkey/ecdsa.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ [all …]
|
/aosp_15_r20/external/mbedtls/programs/ |
H A D | Makefile | 2 # To compile on SunOS: add "-lsocket -lnsl" to LDFLAGS 7 LDFLAGS ?= macro 209 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) aes/crypt_and_hash.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 213 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) cipher/cipher_aead_demo.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 217 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) hash/generic_sum.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 221 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) hash/hello.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 225 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) hash/md_hmac_demo.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 229 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) pkey/dh_client.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 233 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) pkey/dh_genprime.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ 237 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) pkey/dh_server.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/work/ |
D | gccgo.go | 257 // and all LDFLAGS from cgo dependencies. 260 ldflags := b.gccArchArgs() 412 ldflags = append(ldflags, wholeArchive...) 413 ldflags = append(ldflags, afiles...) 414 ldflags = append(ldflags, noWholeArchive...) 416 ldflags = append(ldflags, cgoldflags...) 417 ldflags = append(ldflags, envList("CGO_LDFLAGS", "")...) 419 ldflags = str.StringList("-Wl,-(", ldflags, "-Wl,-)") 427 ldflags = append(ldflags, fmt.Sprintf("-Wl,--build-id=0x%x", root.buildID)) 438 ldflags = append( [all …]
|
D | gc.go | 555 func setextld(ldflags []string, compiler []string) ([]string, error) { 556 for _, f := range ldflags { 559 return ldflags, nil 566 return append(ldflags, "-extld="+joined), nil 614 var ldflags []string 616 ldflags = append(ldflags, "-installsuffix", cfg.BuildContext.InstallSuffix) 619 ldflags = append(ldflags, "-s", "-w") 622 ldflags = append(ldflags, "-pluginpath", pluginPath(root)) 633 ldflags = append(ldflags, "-X=cmd/internal/objabi.buildID="+root.buildID) 639 ldflags = append(ldflags, "-X=runtime.godebugDefault="+root.Package.DefaultGODEBUG) [all …]
|
/aosp_15_r20/build/soong/cc/ |
H A D | linker.go | 52 Ldflags []string `android:"arch_variant"` member 286 linker.Properties.Ldflags = append(linker.Properties.Ldflags, flags...) 483 …flags.Global.LdFlags = append(flags.Global.LdFlags, fmt.Sprintf("${config.%sGlobalLldflags}", hod)) 485 flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,--pack-dyn-relocs=none") 492 flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,--pack-dyn-relocs=android+relr") 494 flags.Global.LdFlags = append(flags.Global.LdFlags, 498 flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,--pack-dyn-relocs=android") 502 flags.Global.LdFlags = append(flags.Global.LdFlags, fmt.Sprintf("${config.%sGlobalLdflags}", hod)) 507 flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,-undefined,dynamic_lookup") 510 flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,--no-undefined") [all …]
|
H A D | orderfile_test.go | 52 // Check ldFlags of orderfile-enabled module 53 ldFlags := libTest.Rule("ld").Args["ldFlags"] 54 if !strings.Contains(ldFlags, expectedCFlag) { 55 …Expected 'libTest' to enable orderfile, but did not find %q in ldflags %q", expectedCFlag, ldFlags) 82 // Check ldFlags of orderfile-enabled module 83 ldFlags := libTest.Rule("ld").Args["ldFlags"] 84 if !strings.Contains(ldFlags, expectedCFlag) { 85 …("Expected 'libTest' to load orderfile, but did not find %q in ldflags %q", expectedCFlag, ldFlags) 117 // Check ldFlags of orderfile-enabled module 118 ldFlags := test.Rule("ld").Args["ldFlags"] [all …]
|
/aosp_15_r20/external/cronet/build/config/compiler/ |
H A D | BUILD.gn | 270 ldflags = [ 292 ldflags = [] 369 ldflags += scs_parameters 388 ldflags += [ "-fuse-ld=lld" ] 390 ldflags += [ "-B$lld_path" ] 397 ldflags += [ "-Wl,--fatal-warnings" ] 400 ldflags += [ "-Wl,-fatal_warnings" ] 438 ldflags += [ "-Wl,--build-id=sha1" ] 440 ldflags += [ "-Wl,--build-id" ] 496 ldflags += [ "-fPIC" ] [all …]
|
/aosp_15_r20/external/angle/build/config/compiler/ |
H A D | BUILD.gn | 260 ldflags = [ 282 ldflags = [] 359 ldflags += scs_parameters 380 ldflags += [ "-fuse-ld=lld" ] 382 ldflags += [ "-B$lld_path" ] 389 ldflags += [ "-Wl,--fatal-warnings" ] 392 ldflags += [ "-Wl,-fatal_warnings" ] 430 ldflags += [ "-Wl,--build-id=sha1" ] 433 ldflags += [ "-Wl,--build-id=fast" ] 435 ldflags += [ "-Wl,--build-id" ] [all …]
|
/aosp_15_r20/external/cronet/third_party/icu/source/config/ |
H A D | icu-config.1.in | 76 .BI "\-\-ldflags" 79 .BI "\-\-ldflags\-libsonly" 82 .BI "\-\-ldflags\-searchpath" 85 .BI "\-\-ldflags\-system" 88 .BI "\-\-ldflags\-icuio" 133 `icu-config --cxx --cxxflags --cppflags --ldflags` -o props props.cpp 150 LDFLAGS =$(shell icu-config --ldflags) 229 .BI "\-\-ldflags" 235 for example "\-\-ldflags \-\-ldflags-icuio" if the icuio library is required 237 Equivalent to the $(LDFLAGS) Makefile variable. [all …]
|
H A D | icu-config-bottom | 54 …echo " --ldflags Print -L search path and -l libraries to link with ICU [LDFLAGS]. … 55 echo " --ldflags-libsonly Same as --ldflags, but only the -l directives" 56 echo " --ldflags-searchpath Print only -L (search path) directive" 57 echo " --ldflags-system Print only system libs ICU links with (-lpthread, -lm)" 58 echo " --ldflags-icuio Print ICU icuio link directive. Use in addition to --ldflags " 59 …echo " --ldflags-obsolete Print ICU obsolete link directive. Use in addition to --ldflags. (r… 87 echo "The most commonly used options will be --cflags, --cxxflags, --cppflags, and --ldflags." 89 echo ' LDFLAGS=$(shell icu-config --ldflags)' 263 --ldflags-system) 267 --ldflags) [all …]
|
/aosp_15_r20/external/sg3_utils/testing/ |
H A D | Makefile | 46 LDFLAGS = macro 72 $(LD) -o $@ $(LDFLAGS) $^ 75 $(LD) -o $@ $(LDFLAGS) $^ 78 $(LD) -o $@ $(LDFLAGS) $^ 81 $(LD) -o $@ $(LDFLAGS) $^ 85 $(LD) -o $@ $(LDFLAGS) $^ 88 $(LD) -o $@ $(LDFLAGS) $^ 91 $(LD) -o $@ $(LDFLAGS) $^ 94 $(LD) -o $@ $(LDFLAGS) $^ 97 $(LD) -o $@ $(LDFLAGS) $^ [all …]
|
/aosp_15_r20/external/icu/icu4c/source/config/ |
H A D | icu-config.1.in | 76 .BI "\-\-ldflags" 79 .BI "\-\-ldflags\-libsonly" 82 .BI "\-\-ldflags\-searchpath" 85 .BI "\-\-ldflags\-system" 88 .BI "\-\-ldflags\-icuio" 133 `icu-config --cxx --cxxflags --cppflags --ldflags` -o props props.cpp 150 LDFLAGS =$(shell icu-config --ldflags) 229 .BI "\-\-ldflags" 235 for example "\-\-ldflags \-\-ldflags-icuio" if the icuio library is required 237 Equivalent to the $(LDFLAGS) Makefile variable. [all …]
|
H A D | icu-config-bottom | 54 …echo " --ldflags Print -L search path and -l libraries to link with ICU [LDFLAGS]. … 55 echo " --ldflags-libsonly Same as --ldflags, but only the -l directives" 56 echo " --ldflags-searchpath Print only -L (search path) directive" 57 echo " --ldflags-system Print only system libs ICU links with (-lpthread, -lm)" 58 echo " --ldflags-icuio Print ICU icuio link directive. Use in addition to --ldflags " 59 …echo " --ldflags-obsolete Print ICU obsolete link directive. Use in addition to --ldflags. (r… 87 echo "The most commonly used options will be --cflags, --cxxflags, --cppflags, and --ldflags." 89 echo ' LDFLAGS=$(shell icu-config --ldflags)' 263 --ldflags-system) 267 --ldflags) [all …]
|
/aosp_15_r20/external/openscreen/build/config/ |
H A D | BUILD.gn | 34 ldflags = [] 36 ldflags += [ "-pthread" ] 39 ldflags += [ "-Wl,--fatal-warnings" ] 42 ldflags += [ 52 ldflags = [] 57 ldflags += [ "-m64" ] 60 ldflags += [ "-m32" ] 68 ldflags += [ "--target=arm-linux-gnueabihf" ] 71 ldflags += [ "--target=aarch64-linux-gnu" ] 110 ldflags = [ "-Werror" ] [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/testdata/script/ |
D | gcflags_patterns.txt | 3 [!compiler:gc] skip 'using -gcflags and -ldflags' 35 # check for valid -ldflags parameter 36 ! go build '-ldflags="-X main.X=Hello"' 39 # -ldflags for implicit test package applies to test binary 40 go test -a -c -n -gcflags=-N -ldflags=-X=x.y=z z1 44 # -ldflags for explicit test package applies to test binary 45 go test -a -c -n -gcflags=z1=-N -ldflags=z1=-X=x.y=z z1 49 # -ldflags applies to link of command 50 go build -a -n -ldflags=-X=math.pi=3 my/cmd/prog 53 # -ldflags applies to link of command even with strange directory name [all …]
|
/aosp_15_r20/external/pigweed/pw_toolchain/arm_gcc/ |
H A D | BUILD.gn | 45 ldflags = [ "-Wl,--no-warn-rwx-segment" ] 58 ldflags = cflags + [ 66 ldflags = cflags 72 ldflags = cflags 78 ldflags = cflags 84 ldflags = cflags 90 ldflags = cflags 96 ldflags = cflags 102 ldflags = cflags 108 ldflags = cflags [all …]
|
/aosp_15_r20/external/skia/gn/skia/ |
H A D | BUILD.gn | 59 ldflags = [] 81 ldflags += [ 95 ldflags += [ target_triple ] 168 ldflags += [ "-m32" ] 188 ldflags += [ "-static-libstdc++" ] 248 ldflags += [ 258 ldflags += [ "-miphonesimulator-version-min=$ios_min_target" ] 262 ldflags += [ "-miphoneos-version-min=$ios_min_target" ] 283 ldflags += [ 294 ldflags += [ "-Wl,-w" ] [all …]
|
/aosp_15_r20/external/freetype/builds/unix/ |
H A D | configure.raw | 409 LIBPNG_LIBS=`libpng-config --ldflags` 410 libpng_libspriv=`libpng-config --static --ldflags` 555 # to LDFLAGS. Apple TechNote 2137 recommends to include these 556 # options in CFLAGS but not in LDFLAGS. 568 AC_MSG_CHECKING([whether CFLAGS and LDFLAGS share ${c} ${a}]) 569 if expr " ${LDFLAGS} " : ".* ${c} *${a}.*" > /dev/null 573 AC_MSG_RESULT([no, copy to LDFLAGS]) 574 LDFLAGS="${LDFLAGS} ${c} ${a}" 579 AC_MSG_CHECKING([whether CFLAGS and LDFLAGS share ${c}]) 580 if expr " ${LDFLAGS} " : ".* ${c} *${a}.*" > /dev/null [all …]
|
/aosp_15_r20/external/skia/modules/canvaskit/ |
H A D | BUILD.gn | 151 ldflags = [] 153 ldflags += [ 164 ldflags += [ 173 ldflags += [ 178 ldflags += [ "-fno-rtti" ] 181 ldflags += [ 197 ldflags += [ 207 ldflags += [ 214 ldflags += [ 231 ldflags += [ [all …]
|
/aosp_15_r20/external/sg3_utils/examples/ |
H A D | Makefile | 39 LDFLAGS = macro 59 $(LD) -o $@ $(LDFLAGS) $^ 62 $(LD) -o $@ $(LDFLAGS) $^ 65 $(LD) -o $@ $(LDFLAGS) $^ 68 $(LD) -o $@ $(LDFLAGS) $^ 71 $(LD) -o $@ $(LDFLAGS) $^ 74 $(LD) -o $@ $(LDFLAGS) $^ 77 $(LD) -o $@ $(LDFLAGS) $^ 80 $(LD) -o $@ $(LDFLAGS) $^ 83 $(LD) -o $@ $(LDFLAGS) $^ [all …]
|
/aosp_15_r20/external/curl/lib/ |
H A D | Makefile.mk | 43 LDFLAGS ?= 100 LDFLAGS += -L"$(LIBCARES_PATH)/lib" 108 LDFLAGS += -L"$(LIBRTMP_PATH)/librtmp" 117 LDFLAGS += -L"$(LIBSSH2_PATH)/lib" 123 LDFLAGS += -L"$(LIBSSH_PATH)/lib" 129 LDFLAGS += -L"$(WOLFSSH_PATH)/lib" 140 LDFLAGS += -L"$(OPENSSL_LIBPATH)" 157 LDFLAGS += -L"$(WOLFSSL_PATH)/lib" 165 LDFLAGS += -L"$(MBEDTLS_PATH)/lib" 173 LDFLAGS += -L"$(BEARSSL_PATH)/build" [all …]
|
/aosp_15_r20/external/python/cpython2/PC/os2emx/ |
D | Makefile | 78 LDFLAGS= -Zmt -Zcrtdll -L. -lgcc macro 79 LDFLAGS.EXE= $(LDFLAGS) 80 LDFLAGS.DLL= $(LDFLAGS) -Zdll 81 LDFLAGS.A= $(LDFLAGS) $(LIBS) 92 LDFLAGS+= -g 95 LDFLAGS+= -s 122 LDFLAGS+= -Zomf 209 $(LD) $(LDFLAGS.A) -o $@ $(^^) $(L^) 212 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS) 215 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(PYTHON.IMPLIB) $(LIBS) [all …]
|
/aosp_15_r20/external/AFLplusplus/ |
H A D | GNUmakefile | 55 LDFLAGS += $(ASAN_LDFLAGS) 60 override LDFLAGS += -fsanitize=undefined 66 override LDFLAGS += -fsanitize=memory 108 LDFLAGS += $(SDK_LD) 118 LDFLAGS = -lkstat -lrt -lsocket -lnsl macro 129 LDFLAGS += -lm -lpthread -lz -lutil 135 override LDFLAGS += -pg 167 override LDFLAGS += -L /usr/local/lib/ 172 override LDFLAGS += -L /usr/local/lib/ 177 override LDFLAGS += -Wl,-z,notext -L /usr/local/lib/ [all …]
|
/aosp_15_r20/external/coreboot/util/msrtool/ |
H A D | configure | 99 printf "finding LDFLAGS for ${WHAT}... " 1>&2 100 OUT="${OUT}\n${CC} -o .config .config.o ${LDFLAGS} 2>&1" 101 OUT="${OUT}\n`echo "${CC} -o .config .config.o ${LDFLAGS}"|sh 2>&1`" 103 echo " using: ${LDFLAGS}" 1>&2 104 echo "${LDFLAGS}" 109 OUT="${OUT}\n${CC} -o .config .config.o ${LDFLAGS} ${1} 2>&1" 110 OUT="${OUT}\n`echo "${CC} -o .config .config.o ${LDFLAGS} ${1}"|sh 2>&1`" 112 echo " using: ${LDFLAGS} ${1}" 1>&2 113 echo "${LDFLAGS} ${1}" 125 echo "You can try to fix this by manually setting LDFLAGS in the environment before" 1>&2 [all …]
|
/aosp_15_r20/external/pigweed/pw_toolchain/arm_clang/ |
H A D | BUILD.gn | 53 ldflags = [ "-Wl,-u_printf_float" ] 75 ldflags = cflags 76 ldflags += cortex_m_common_link_flags 88 ldflags = cflags 89 ldflags += cortex_m_common_link_flags 98 ldflags = cflags 106 ldflags = cflags 115 ldflags = cflags 124 ldflags = cflags 132 ldflags = cflags [all …]
|