Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Move -znoexecstack to the right place. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
177d297e96b3bfadf8ab909e6201f72c |
| User & Date: | rmax 2023-04-21 18:10:56.091 |
Context
|
2025-05-21
| ||
| 15:52 | Code cleanups Leaf check-in: 00e4ec330d user: max tags: trunk | |
|
2023-04-21
| ||
| 18:10 | Move -znoexecstack to the right place. check-in: 177d297e96 user: rmax tags: trunk | |
|
2023-02-23
| ||
| 15:24 | Only strip the embedded jq6500 binary. check-in: 50bada62e4 user: rmax tags: trunk, release-1-1 | |
Changes
Changes to Makefile.
1 2 | CC=gcc CFLAGS=$(ARCHFLAGS) -Wall -Wextra -Os -g | | | 1 2 3 4 5 6 7 8 9 10 | CC=gcc CFLAGS=$(ARCHFLAGS) -Wall -Wextra -Os -g LDFLAGS=$(ARCHFLAGS) -Wall -Wextra SHELL=/bin/bash MKISOFS:=$(shell type -p mkisofs || type -p xorrisofs) all: jq6500 iso: rescue.iso |
| ︙ | ︙ | |||
27 28 29 30 31 32 33 |
@ exit 1
endif
install: jq6500
install -m 755 -D jq6500 ${DESTDIR}/usr/bin/jq6500
%.o: %.iso
| | | 27 28 29 30 31 32 33 34 35 36 37 38 39 |
@ exit 1
endif
install: jq6500
install -m 755 -D jq6500 ${DESTDIR}/usr/bin/jq6500
%.o: %.iso
$(LD) --relocatable -znoexecstack -bbinary -o $@ $^
clean:
rm -f isoroot/jq6500 rescue.iso rescue.o jq6500 jq6500.o
.PHONY: all iso clean install
|