aboutsummaryrefslogtreecommitdiff
path: root/src/tools/mac/upload_system_symbols/testdata/Makefile
diff options
context:
space:
mode:
authorrsesek@chromium.org <rsesek@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2014-07-31 19:11:29 +0000
committerrsesek@chromium.org <rsesek@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2014-07-31 19:11:29 +0000
commit9c932f1d0c5667846124663e738656db73595645 (patch)
tree6208adcf0b69510c9b01bbed395b0e3013900068 /src/tools/mac/upload_system_symbols/testdata/Makefile
parentIn Mac dump_syms, allow reading debug data out of both the Mach-O file and th... (diff)
downloadbreakpad-9c932f1d0c5667846124663e738656db73595645.tar.xz
upload_system_symbols: Use the Go1.3 improvements to debug/macho.
This removes the custom MachO header reading functionality, since the stdlib can now read Fat files. R=andybons@chromium.org, mark@chromium.org Review URL: https://breakpad.appspot.com/10684002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1360 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/tools/mac/upload_system_symbols/testdata/Makefile')
-rw-r--r--src/tools/mac/upload_system_symbols/testdata/Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/tools/mac/upload_system_symbols/testdata/Makefile b/src/tools/mac/upload_system_symbols/testdata/Makefile
deleted file mode 100644
index cb481a3c..00000000
--- a/src/tools/mac/upload_system_symbols/testdata/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-all: libarchtest.dylib archtest.exe
-
-archtest32.exe: archtest.c
- clang -m32 $< -o $@
-
-archtest64.exe: archtest.c
- clang -m64 $< -o $@
-
-archtest.exe: archtest32.exe archtest64.exe
- lipo $^ -create -output $@
-
-libarchtest32.dylib: archtest.c
- clang -m32 -dynamiclib $< -o $@
-
-libarchtest64.dylib: archtest.c
- clang -m64 -dynamiclib $< -o $@
-
-libarchtest.dylib: libarchtest32.dylib libarchtest64.dylib
- lipo $^ -create -output $@
-
-clean:
- rm -f *.dylib *.exe