Searched refs:objcopy (Results 1 – 25 of 153) sorted by relevance
1234567
/external/u-boot/post/lib_powerpc/fpu/ |
D | Makefile | 6 objs-before-objcopy := 20001122-1.o 20010114-2.o 20010226-1.o 980619-1.o \ 8 targets += $(objs-before-objcopy) 11 $(foreach m, $(objs-before-objcopy), $(eval CFLAGS_REMOVE_$m := -msoft-float)) 15 .SECONDARY: $(call objectify, $(objs-before-objcopy)) 17 obj-y := $(objs-before-objcopy:.o=_.o) 21 $(call if_changed,objcopy)
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/ |
D | CMakeLists.txt | 16 add_llvm_tool(llvm-objcopy 17 llvm-objcopy.cpp 24 add_llvm_tool_symlink(llvm-strip llvm-objcopy) 27 add_llvm_tool_symlink(objcopy llvm-objcopy) 28 add_llvm_tool_symlink(strip llvm-objcopy)
|
D | LLVMBuild.txt | 1 ;===- ./tools/llvm-objcopy/LLVMBuild.txt -----------------------*- Conf -*--===; 19 name = llvm-objcopy
|
/external/swiftshader/third_party/subzero/pydir/ |
D | szbuild.py | 300 objcopy = '{base}/{objcopy}'.format(base=path_addition, 301 objcopy=GetObjcopyCmd(args.target)) 339 ).format(objcopy=objcopy, obj=obj_llc), echo=args.verbose) 384 ).format(objcopy=objcopy, obj=obj_sz), echo=args.verbose) 410 ).format(objcopy=objcopy, obj=obj_sz, weak=obj_sz_weak), 416 ).format(objcopy=objcopy, 423 ).format(objcopy=objcopy, obj=obj_llc, weak=obj_llc_weak), 443 ).format(objcopy=objcopy, partial=obj_partial), 448 ).format(objcopy=objcopy, partial=obj_partial,
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-objcopy/ |
D | help-message.test | 1 # RUN: llvm-objcopy --help | FileCheck --check-prefix=OBJCOPY-USAGE %s 2 # RUN: not llvm-objcopy 2>&1 | FileCheck --check-prefix=OBJCOPY-USAGE %s 3 # RUN: not llvm-objcopy -abcabc 2>&1 | FileCheck --check-prefix=UNKNOWN-ARG %s 4 # RUN: not llvm-objcopy -strip-debug 2>&1 | FileCheck %s --check-prefix=NO-INPUT-FILES 12 # OBJCOPY-USAGE: USAGE: llvm-objcopy
|
D | add-section.test | 2 # RUN: llvm-objcopy -O binary -j .test2 %t %t.sec 3 # RUN: llvm-objcopy -R .test2 %t %t2 4 # RUN: llvm-objcopy -add-section=.test2=%t.sec %t2 %t3
|
D | rename-section.test | 2 # RUN: llvm-objcopy --rename-section=.foo=.bar %t %t2 4 # RUN: not llvm-objcopy --rename-section=.foo.bar --rename-section=.foo=.other %t %t2 2>&1 | FileCh… 5 # RUN: not llvm-objcopy --rename-section=.foo=.bar --rename-section=.foo=.other %t %t2 2>&1 | FileC…
|
D | strip-debug.test | 3 # RUN: llvm-objcopy -strip-debug %t %t2 6 # Verify that the previous run of llvm-objcopy has not modified the input. 26 # RUN: llvm-objcopy --strip-debug %t.a %t.a 37 # RUN: llvm-objcopy --strip-debug %t.multiple-obj.a %t.multiple-obj.stripped.a 56 # RUN: not llvm-objcopy --strip-debug %t.non-object.a %t2.non-object.a 2>&1 | FileCheck %s --check-… 67 # RUN: llvm-objcopy --strip-debug %t.thin.a %t2.thin.a 79 # RUN: not llvm-objcopy --strip-debug %t.non-object.thin.a %t.non-object.thin.a 2>&1 | FileCheck %s…
|
D | discard-all.test | 3 # RUN: llvm-objcopy --discard-all %t %t2 4 # Verify that llvm-objcopy has not modified the input. 8 # RUN: llvm-objcopy -x %t %t3 9 # Verify that llvm-objcopy has not modified the input.
|
D | drawf-fission.test | 1 # RUN: llvm-objcopy -extract-dwo %p/Inputs/dwarf.dwo %t 2 # RUN: llvm-objcopy -strip-dwo %p/Inputs/dwarf.dwo %t2 3 # RUN: llvm-objcopy -split-dwo=%t3 %p/Inputs/dwarf.dwo %t4
|
D | strip-dwo-groups.test | 2 # RUN: llvm-objcopy -strip-dwo %t 21 // `llvm-objcopy -strip-dwo` strips out dwo sections, as a result, the index of 25 // `llvm-objcopy -strip-dwo` used to produce invalid binaries with
|
D | basic-archive-copy.test | 6 # RUN: llvm-objcopy %t.a %t2.a 7 # RUN: llvm-objcopy %t %t2 14 # Verify that llvm-objcopy has not modifed the input. 22 # RUN: llvm-objcopy %t.no.index.a %t2.no.index.a
|
D | basic-only-keep.test | 2 # RUN: llvm-objcopy -only-keep=.test %t %t2 3 # RUN: llvm-objcopy -j .test %t %t3
|
D | only-keep-remove-strtab.test | 2 # RUN: llvm-objcopy -R .symtab -R .strtab -only-keep=.test %t %t2 3 # RUN: llvm-objcopy -j .test -R .strtab -R .symtab %t %t3
|
D | redefine-symbol.test | 2 # RUN: llvm-objcopy --redefine-sym foo=oof --redefine-sym empty= %t %t2 4 # RUN: not llvm-objcopy --redefine-sym barbar %t %t2 2>&1 | FileCheck %s --check-prefix=BAD-FORMAT 5 # RUN: not llvm-objcopy --redefine-sym foo=f1 --redefine-sym foo=f2 %t %t2 2>&1 | FileCheck %s --ch…
|
D | keep-only-keep.test | 2 # RUN: llvm-objcopy -keep=.test2 -only-keep=.test %t %t2 3 # RUN: llvm-objcopy -j .test -keep=.test2 %t %t3
|
D | strip-reloc-symbol.test | 2 # RUN: not llvm-objcopy -N foo %t %t2 2>&1 | FileCheck %s 32 #CHECK: {{.*}}llvm-objcopy{{(\.EXE|\.exe)?}}: not stripping symbol `foo' because it is named in a r…
|
D | basic-only-keep-debug.test | 6 # RUN: llvm-objcopy %t %t2 7 # RUN: llvm-objcopy --only-keep-debug %t %t3
|
D | strip-group-symbol.test | 2 # RUN: not llvm-objcopy -N foo %t %t2 2>&1 | FileCheck %s 31 #CHECK: {{.*}}llvm-objcopy{{(\.EXE|\.exe)?}}: Symbol foo cannot be removed because it is referenced…
|
D | dump-section.test | 2 # RUN: llvm-objcopy -O binary -j .text %t %t2 3 # RUN: llvm-objcopy -O binary -only-keep .text %t %t3
|
D | remove-section.test | 4 # RUN: llvm-objcopy -R .test2 %t %t2 7 # Verify that the first run of llvm-objcopy 11 # RUN: llvm-objcopy -remove-section=.test2 %t1 %t3
|
D | strip-all.test | 3 # RUN: llvm-objcopy --strip-all %t %t2 6 # Verify that the previous llvm-objcopy's run has not modified the input. 26 # RUN: llvm-objcopy --strip-all %t.a %t.a
|
/external/tensorflow/ |
D | arm_compiler.BUILD | 32 name = "objcopy", 34 "bin/arm-linux-gnueabihf-objcopy", 77 ":objcopy",
|
/external/libunwind/tests/ |
D | run-coredump-unwind | 24 …objcopy -S --remove-section .gdb_index --remove-section .comment --keep-symbols="$keep_symbols" "$… 28 objcopy --add-section .gnu_debugdata="$mini_debuginfo" "$binary"
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-symbolizer/ |
D | split-debug.test | 21 RUN: llvm-objcopy --keep=.debug_info %p/Inputs/addr.exe %t/.debug/addr 22 RUN: llvm-objcopy --strip-debug --add-gnu-debuglink=%t/.debug/addr %p/Inputs/addr.exe %t/addr.exe
|
1234567