Skip to content

Commit

Permalink
that darn bfd header is really annoying
Browse files Browse the repository at this point in the history
Change-Id: I71e0f40c47df3b3cd493d46ddca96bc50455d8f6
  • Loading branch information
cooljeanius committed Oct 27, 2023
1 parent 9a8dd65 commit b558e27
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/apple-gdb-1824-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ jobs:
- run: ./configure --enable-silent-rules
- run: make -ki -C libcheckpoint || make -ki -C libcheckpoint -f Makefile_orig || make -ki -C macsbug || make -ki -C macsbug/gdb_plugin_support || (if test -x "$(which ant)"; then ant; fi)
- run: cd src && ./configure --disable-werror --disable-opts-test --enable-carbon-framework --enable-debug-symbols-framework --enable-64-bit-bfd --enable-silent-rules
- run: cd src && make configure-bfd
- run: cd src && make -C bfd headers
- run: cd src && if test ! -e bfd/bfd.h; then make -C bfd bfd.h; else stat bfd/bfd.h; fi
- run: cd src && make -C bfd diststuff
- run: cd src && make
- run: cd src && make check
- run: pwd
Expand Down
7 changes: 7 additions & 0 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -62101,6 +62101,13 @@ configure-gdb: $(CONFIGURE_GDB_TK)
all-gdb: $(gdbnlmrequirements) $(GDB_TK)
install-gdb: $(INSTALL_GDB_TK)

# Special-case for this one annoying target:
bfd-headers: configure-bfd
$(MAKE) -C bfd headers
if test ! -e bfd/bfd.h; then make -C bfd bfd.h; else stat bfd/bfd.h; fi
.PHONY: bfd-headers
all-bfd: bfd-headers

# Serialization dependencies. Host configures do NOT work well in parallel
# to each other, due to contention over config.cache. Target configures and
# build configures are similar.
Expand Down
7 changes: 7 additions & 0 deletions src/Makefile.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -1964,6 +1964,13 @@ configure-gdb: $(CONFIGURE_GDB_TK)
all-gdb: $(gdbnlmrequirements) $(GDB_TK)
install-gdb: $(INSTALL_GDB_TK)
# Special-case for this one annoying target:
bfd-headers: configure-bfd
$(MAKE) -C bfd headers
if test ! -e bfd/bfd.h; then make -C bfd bfd.h; else stat bfd/bfd.h; fi
.PHONY: bfd-headers
all-bfd: bfd-headers
# Serialization dependencies. Host configures do NOT work well in parallel
# to each other, due to contention over config.cache. Target configures and
# build configures are similar.
Expand Down
2 changes: 1 addition & 1 deletion src/bfd/po/bfd.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-10-26 23:24-0400\n"
"POT-Creation-Date: 2023-10-27 08:04-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down

0 comments on commit b558e27

Please sign in to comment.