mirror of
https://github.com/ianlancetaylor/libbacktrace.git
synced 2026-04-01 06:59:07 +08:00
libbacktrace: recognize PE bigobj objects at configure time
Patch from Christopher Wellons. * filetype.awk: Recognize PE bigobj objects at configure time.
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
/^\177ELF\002/ { if (NR == 1) { print "elf64"; exit } }
|
/^\177ELF\002/ { if (NR == 1) { print "elf64"; exit } }
|
||||||
/^\114\001/ { if (NR == 1) { print "pecoff"; exit } }
|
/^\114\001/ { if (NR == 1) { print "pecoff"; exit } }
|
||||||
/^\144\206/ { if (NR == 1) { print "pecoff"; exit } }
|
/^\144\206/ { if (NR == 1) { print "pecoff"; exit } }
|
||||||
|
/^\000\000\377\377/ { if (NR == 1) { print "pecoff"; exit } }
|
||||||
/^\001\337/ { if (NR == 1) { print "xcoff32"; exit } }
|
/^\001\337/ { if (NR == 1) { print "xcoff32"; exit } }
|
||||||
/^\001\367/ { if (NR == 1) { print "xcoff64"; exit } }
|
/^\001\367/ { if (NR == 1) { print "xcoff64"; exit } }
|
||||||
/^\376\355\372\316/ { if (NR == 1) { print "macho"; exit } }
|
/^\376\355\372\316/ { if (NR == 1) { print "macho"; exit } }
|
||||||
|
|||||||
Reference in New Issue
Block a user