/external/clang/test/Driver/ |
darwin-dsymutil.c | 1 // Check that we run dsymutil properly with multiple -arch options. 7 // CHECK-MULTIARCH-ACTIONS: 0: input, "{{.*}}darwin-dsymutil.c", c 15 // CHECK-MULTIARCH-ACTIONS: 8: dsymutil, {7}, dSYM 22 // CHECK-MULTIARCH-BINDINGS: # "x86_64-apple-darwin10" - "darwin::Dsymutil", inputs: ["a.out"], output: "a.out.dSYM" 31 // CHECK-OUTPUT-NAME: "x86_64-apple-darwin10" - "darwin::Dsymutil", inputs: ["foo"], output: "foo.dSYM" 33 // Check that we only use dsymutil when needed. 38 // RUN: not grep "Dsymutil" %t 45 // CHECK-LOCATION: "x86_64-apple-darwin10" - "darwin::Dsymutil", inputs: ["bar/foo"], output: "bar/foo.dSYM"
|
darwin-verify-debug.c | 9 // CHECK-MULTIARCH-ACTIONS: 8: dsymutil, {7}, dSYM 16 // CHECK-MULTIARCH-BINDINGS: # "x86_64-apple-darwin10" - "darwin::Dsymutil", inputs: ["a.out"], output: "a.out.dSYM" 26 // CHECK-OUTPUT-NAME: "x86_64-apple-darwin10" - "darwin::Dsymutil", inputs: ["foo"], output: "foo.dSYM"
|
darwin-ld.c | 6 // Make sure we run dsymutil on source input files. 8 // RUN: grep '".*dsymutil" "-o" "BAR.dSYM" "BAR"' %t.log 10 // RUN: grep '".*dsymutil" "-o" "BAR.dSYM" "BAR"' %t.log
|
/external/compiler-rt/make/ |
config.mk | 24 DSYMUTIL := dsymutil
|
options.mk | 46 DSYMUTIL := dsymutil
|
lib_info.mk | 59 SHARED_LIBRARY SHARED_LIBRARY_SUFFIX STRIP LIPO DSYMUTIL
|
AppleBI.mk | 74 $(call GetCNAVar,DSYMUTIL,Platform.darwin_bni,Release,) $@
|
/external/compiler-rt/make/platform/ |
darwin_bni.mk | 17 DSYMUTIL := $(shell xcrun -sdk $(SDKROOT) -find dsymutil)
|
/external/valgrind/main/ |
Makefile.all.am | 21 # created, with 'dsymutil p'. We could redefine LINK with a script that 22 # executes 'dsymutil' after linking, but that's a pain. Instead we use this 24 # 'dsymutil' on all the executables that lack a .dSYM directory, or that are 29 echo "dsymutil $$f"; \ 30 dsymutil $$f; \
|
/external/chromium_org/tools/mac/ |
dump-static-initializers.py | 39 child = subprocess.Popen(['dsymutil', '-s', binary], stdout=subprocess.PIPE)
|
/external/bison/m4/ |
c-working.m4 | 55 # "clang-mp-2.9 -o test -g test.c" launches "/usr/bin/dsymutil test -o
|
/external/chromium/build/mac/ |
strip_save_dsym | 22 # Rationale: the "right" way to generate dSYM bundles, dsymutil, is incredibly 24 # dsymutil does) is comparatively fast. Since we usually just want to strip 28 # dsymutil and pointing it at the original Mach-O file inside the "fake" 209 # info_template is the same as what dsymutil would have written, with the
|
/external/chromium_org/build/mac/ |
strip_save_dsym | 22 # Rationale: the "right" way to generate dSYM bundles, dsymutil, is incredibly 24 # dsymutil does) is comparatively fast. Since we usually just want to strip 28 # dsymutil and pointing it at the original Mach-O file inside the "fake" 209 # info_template is the same as what dsymutil would have written, with the
|
/external/clang/lib/Driver/ |
Action.cpp | 35 case DsymutilJobClass: return "dsymutil";
|
Tools.h | 295 class LLVM_LIBRARY_VISIBILITY Dsymutil : public DarwinTool { 297 Dsymutil(const ToolChain &TC) : DarwinTool("darwin::Dsymutil", 298 "dsymutil", TC) {}
|
/external/valgrind/main/drd/tests/ |
filter_stderr | 19 -e '/^run: \/usr\/bin\/dsymutil.*/d' \
|
/external/valgrind/main/none/tests/ |
cmdline1.stdout.exp | 46 --dsymutil=no|yes run dsymutil on Mac OS X when helpful? [no]
|
cmdline2.stdout.exp | 46 --dsymutil=no|yes run dsymutil on Mac OS X when helpful? [no]
|
/external/valgrind/main/coregrind/m_debuginfo/ |
readmacho.c | 650 dsymutil on it. */ 975 HChar* dsymutil = "\/usr\/bin\/dsymutil "; local [all...] |
/external/chromium_org/tools/valgrind/ |
valgrind_test.py | 289 """Runs dsymutil if needed. 292 bundle generated by dsymutil. It is not currently able to chase DWARF 298 This function will run dsymutil if the .dSYM bundle is missing or if 318 # dsymutil. dsymutil does not need to be run again. 323 # dsymutil has unstripped input to work with. Move the stripped 336 dsymutil_command = ['dsymutil', test_command] 338 # dsymutil is crazy slow. Ideally we'd have a timeout here, 340 # after each line of output; dsymutil is silent [all...] |
/external/llvm/utils/buildit/ |
build_llvm | 304 DSYMUTIL=`xcrun -find dsymutil` 307 -print | xargs -n 1 -P ${SYSCTL} ${DSYMUTIL}
|
/external/valgrind/main/cachegrind/tests/x86/ |
Makefile.in | 639 # created, with 'dsymutil p'. We could redefine LINK with a script that 640 # executes 'dsymutil' after linking, but that's a pain. Instead we use this 642 # 'dsymutil' on all the executables that lack a .dSYM directory, or that are 647 echo "dsymutil $$f"; \ 648 dsymutil $$f; \
|
/external/valgrind/main/memcheck/tests/amd64-linux/ |
Makefile.in | 661 # created, with 'dsymutil p'. We could redefine LINK with a script that 662 # executes 'dsymutil' after linking, but that's a pain. Instead we use this 664 # 'dsymutil' on all the executables that lack a .dSYM directory, or that are 669 echo "dsymutil $$f"; \ 670 dsymutil $$f; \
|
/external/valgrind/main/memcheck/tests/ppc32/ |
Makefile.in | 653 # created, with 'dsymutil p'. We could redefine LINK with a script that 654 # executes 'dsymutil' after linking, but that's a pain. Instead we use this 656 # 'dsymutil' on all the executables that lack a .dSYM directory, or that are 661 echo "dsymutil $$f"; \ 662 dsymutil $$f; \
|
/external/valgrind/main/memcheck/tests/ppc64/ |
Makefile.in | 653 # created, with 'dsymutil p'. We could redefine LINK with a script that 654 # executes 'dsymutil' after linking, but that's a pain. Instead we use this 656 # 'dsymutil' on all the executables that lack a .dSYM directory, or that are 661 echo "dsymutil $$f"; \ 662 dsymutil $$f; \
|