HomeSort by relevance Sort by last modified time
    Searched refs:objcopy (Results 1 - 25 of 38) sorted by null

1 2

  /external/u-boot/post/lib_powerpc/fpu/
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/u-boot/doc/
README.sh 81 address by using 'objcopy'.
82 ex) shX-linux-objcopy -Ibinary -Osrec u-boot.bin u-boot.flash.srec
  /device/google/contexthub/firmware/os/cpu/x86/
x86.mk 18 OBJCOPY = objcopy
  /external/linux-kselftest/tools/testing/selftests/powerpc/switch_endian/
Makefile 15 $(CROSS_COMPILE)objcopy -j .text --reverse-bytes=4 -O binary $< $@
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
llvm-objcopy.h 1 //===- llvm-objcopy.h -------------------------------------------*- C++ -*-===//
20 namespace objcopy { namespace in namespace:llvm
39 } // end namespace objcopy
  /external/swiftshader/third_party/subzero/pydir/
szbuild.py 300 objcopy = '{base}/{objcopy}'.format(base=path_addition,
301 objcopy=GetObjcopyCmd(args.target))
338 '{objcopy} --redefine-sym _start=_user_start {obj}'
339 ).format(objcopy=objcopy, obj=obj_llc), echo=args.verbose)
383 '{objcopy} --redefine-sym _start=_user_start {obj}'
384 ).format(objcopy=objcopy, obj=obj_sz), echo=args.verbose)
409 '{objcopy} --weaken {obj} {weak}
    [all...]
crosstest.py 177 shellcmd(['{bin}/{objcopy}'.format(bin=bindir,
178 objcopy=GetObjcopyCmd(args.target)),
194 shellcmd(['{bin}/{objcopy}'.format(bin=bindir,
195 objcopy=GetObjcopyCmd(args.target)),
267 shellcmd(['{bin}/{objcopy}'.format(bin=bindir,
268 objcopy=GetObjcopyCmd(args.target)),
  /external/libunwind/tests/
run-coredump-unwind 24 objcopy -S --remove-section .gdb_index --remove-section .comment --keep-symbols="$keep_symbols" "$debuginfo" "$mini_debuginfo" &> /dev/null
28 objcopy --add-section .gnu_debugdata="$mini_debuginfo" "$binary"
  /device/google/contexthub/firmware/os/platform/stm32/flash_script/
Makefile 18 OBJCOPY = $(CROSS_COMPILE)objcopy
24 $(OBJCOPY) -j .data -j .text -I elf32-littlearm -O binary tool.elf tool.bin
  /external/u-boot/examples/standalone/
Makefile 65 $(call if_changed,objcopy)
69 $(call if_changed,objcopy)
  /device/linaro/hikey/l-loader/
hikey.mk 4 OBJCOPY=$(CROSS_COMPILE)objcopy
19 $(OBJCOPY) -O binary loader temp
  /build/make/core/
aux_toolchain.mk 38 AUX_OBJCOPY := $(AUX_TOOLCHAIN)objcopy
  /external/u-boot/tools/binman/test/
Makefile 32 objcopy -O binary $< -R .note.gnu.build-id $@
  /build/soong/scripts/
strip.sh 21 # CROSS_COMPILE: prefix added to readelf, objcopy tools
45 --use-gnu-strip Use strip/objcopy instead of llvm-{strip,objcopy}
53 # Similary, calls to objcopy are replaced with llvm-objcopy,
69 "${CLANG_BIN}/llvm-objcopy" "${infile}" "${outfile}.tmp" ${REMOVE_SECTIONS}
71 "${CROSS_COMPILE}objcopy" "${infile}" "${outfile}.tmp" ${REMOVE_SECTIONS}
77 echo "do_strip_keep_symbol_list does not work with llvm-objcopy"
86 "${CROSS_COMPILE}objcopy" "${infile}" "${outfile}.tmp" ${KEEP_SYMBOLS}
98 # Current prebult llvm-objcopy does not support the following flags
    [all...]
  /device/google/contexthub/firmware/os/cpu/cortexm4/
cortexm4.mk 18 OBJCOPY = $(CROSS_COMPILE)objcopy
  /external/avb/examples/uefi/
Makefile 32 EFI_OBJCOPY = objcopy
  /external/u-boot/examples/api/
Makefile 62 $(call if_changed,objcopy)
  /device/linaro/hikey/hifi/xaf/hifi-dpf/build_hikey/
common.mk 31 OBJCOPY = objcopy
45 OBJCOPY = xt-objcopy $(XTCORE)
124 $(QUIET) $(OBJCOPY) --keep-global-symbols=$(SYMFILE) $@ $(TEMPOBJ)
125 $(QUIET) $(OBJCOPY) --strip-unneeded $(TEMPOBJ) $@
  /device/linaro/hikey/hifi/xaf/hifi-dpf/build_hikey/tools/
elftobin.sh 46 xt-objcopy $INPUT_ELF_FILE -O binary --only-section $VAR $VARBIN
  /external/python/cpython3/Lib/test/
pickletester.py 669 def assert_is_copy(self, obj, objcopy, msg=None):
673 msg = "{!r} is not a copy of {!r}".format(obj, objcopy)
674 self.assertEqual(obj, objcopy, msg=msg)
675 self.assertIs(type(obj), type(objcopy), msg=msg)
677 self.assertDictEqual(obj.__dict__, objcopy.__dict__, msg=msg)
678 self.assertIsNot(obj.__dict__, objcopy.__dict__, msg=msg)
680 self.assertListEqual(obj.__slots__, objcopy.__slots__, msg=msg)
683 hasattr(obj, slot), hasattr(objcopy, slot), msg=msg)
685 getattr(objcopy, slot, None), msg=msg)
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3399/drivers/m0/
Makefile 45 OC := ${M0_CROSS_COMPILE}objcopy
  /external/linux-kselftest/tools/testing/selftests/bpf/
Makefile 92 LLVM_OBJCOPY ?= llvm-objcopy
  /external/python/cpython2/Lib/test/
pickletester.py 498 def assert_is_copy(self, obj, objcopy, msg=None):
502 msg = "{!r} is not a copy of {!r}".format(obj, objcopy)
503 self.assertEqual(obj, objcopy, msg=msg)
504 self.assertIs(type(obj), type(objcopy), msg=msg)
506 self.assertDictEqual(obj.__dict__, objcopy.__dict__, msg=msg)
507 self.assertIsNot(obj.__dict__, objcopy.__dict__, msg=msg)
509 self.assertListEqual(obj.__slots__, objcopy.__slots__, msg=msg)
512 hasattr(obj, slot), hasattr(objcopy, slot), msg=msg)
514 getattr(objcopy, slot, None), msg=msg)
    [all...]
  /build/soong/cc/
makevars.go 75 ctx.Strict("LLVM_OBJCOPY", "${config.ClangBin}/llvm-objcopy")
296 ctx.Strict(makePrefix+"OBJCOPY", gccCmd(toolchain, "objcopy"))
  /device/google/contexthub/firmware/app/
app.mk 89 OBJCOPY := $(PREFIX)objcopy
230 $(OBJCOPY) -j.relocs -j.flash -j.data -j.dynsym -O binary $< $@

Completed in 996 milliseconds

1 2