Skip to content

Commit

Permalink
clang?
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <[email protected]>
  • Loading branch information
crazy-max committed Feb 9, 2024
1 parent 1b91e84 commit fc60834
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hack/dockerfiles/archutil.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ WORKDIR /src

FROM base AS exit-amd64
COPY util/archutil/fixtures/exit.amd64.S .
RUN clang -target x86_64-linux-gnu -O0 -g0 -static -nostdlib -o exit exit.amd64.S
RUN clang -target x86_64-linux-gnu -O0 -g0 -static -nostdlib -o exit exit.amd64.S && strip --strip-unneeded exit

FROM base AS exit-386
COPY util/archutil/fixtures/exit.386.s .
Expand Down
2 changes: 1 addition & 1 deletion util/archutil/amd64_binary.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ package archutil
// This file is generated by running "make archutil".
// Do not edit manually.

const Binaryamd64 = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xec\x98\xc1\x8b\xd3\x40\x14\xc6\xbf\xc9\xb6\xbb\x2e\x08\xd9\x95\x15\xc4\x05\x15\x11\x6f\x0d\xbb\xab\x8b\x1e\x54\xe2\x82\xee\x20\x22\x2c\xd2\xab\x21\x21\xa1\x16\xb4\x2d\xcd\xa4\x54\x29\xd8\xd2\x8b\x37\xaf\x5e\xbc\xe4\x2f\xf0\x58\x3c\x48\xf1\x60\xf0\x3f\xd0\x63\x6f\x05\x4f\xde\x2c\x08\x4a\x26\x6f\x34\x8d\x06\x2f\x9e\x64\x7e\x50\xbe\x79\x5f\xdf\xcb\x2b\xcd\x9c\xbe\x67\xb7\xee\xde\x36\x18\x83\xc2\xc0\x0d\xc8\x6a\xc3\x96\xb5\x4d\xfe\xeb\xcd\x9f\x2d\xb0\x71\x15\x2b\xb0\xb1\x8a\xaa\xec\xad\x20\x8f\xbd\xa4\xc7\xe9\xd1\x4a\xb1\x91\x49\x5a\x56\x73\xb5\xda\xa7\xb4\x43\xb6\x52\xd5\x57\xa1\xcf\x9c\xec\x39\xed\x51\x7a\x81\x7c\xa5\x95\x9c\x6e\x01\x58\x01\x70\x78\xaf\x8e\xe7\x07\xdf\x0e\xdf\xec\xbf\x78\x15\x7f\xba\xef\xbf\x3d\xb3\x75\x34\x3b\x7a\xff\x0e\x1a\x8d\x46\xa3\xd1\x68\x34\x1a\x8d\x46\xa3\xd1\xfc\xa7\xf0\xdd\xa9\x19\xf3\xf1\xd7\xb5\xc1\x1d\x3e\x01\x30\x4c\x4d\x33\xbe\xce\x80\xe1\xe0\x0a\x4f\xa6\x4c\x36\x7d\x30\x63\x3e\x9a\xb1\xf3\x2f\xc1\x47\x8b\x54\xa2\x6d\x3e\x61\xd4\x9e\x7d\x3d\x9e\x31\x3e\x5e\xb0\xc8\xf8\xbc\xce\x93\xe4\x26\x00\x79\x38\x48\x0f\xe0\xc9\xf4\x5a\xfa\xe0\x6a\xd9\xef\xc8\x72\x84\x2f\xdf\x8b\xbe\x49\xa9\x44\x5d\xe5\x03\xc4\x09\xf2\x1f\x14\xfc\x93\xe4\x37\x0a\xfe\x59\x19\x21\x18\xbf\x72\x06\xe2\xb4\xf2\xcf\x2d\xfb\x17\x4b\xfc\x5a\x89\x8f\xa0\xdf\x14\x35\xd7\xdb\xb9\xb4\xb3\x6f\xb5\xd1\xdb\x45\x6f\x4f\x7a\x70\x1c\x2f\x0c\x9d\x50\xb8\x5d\x01\x27\xf0\x5d\xe1\xc2\x09\x5a\x3e\x60\x85\x4f\x1e\x0b\xd7\x83\x15\x8a\x6e\xa6\x0f\xd5\xa9\xd5\x16\x81\xd5\x68\x45\x96\x17\x35\x1f\xf9\xb5\xa6\x0f\x4b\x04\x7d\xf1\x0f\xde\xf7\x36\x80\x35\xf9\x0f\x15\xf3\x93\xe5\xdc\x04\x85\xfc\x44\x61\xd1\xbb\x5a\x45\x31\xb7\x29\xe4\x35\x25\xf3\x2c\xb7\x3b\x4f\x87\xe6\x3f\xe6\xe6\xd2\xcb\x72\x8c\xea\x53\xa4\xeb\x94\xe1\xfc\x76\x8f\x29\x9f\xda\xfb\xc3\xbe\x3c\x9b\x25\xf3\x4f\x69\xfe\xf2\x5f\xe6\x7f\x04\x00\x00\xff\xff\xa9\xce\xc7\x8f\x30\x13\x00\x00"
const Binaryamd64 = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xec\x98\x31\x4b\xc3\x40\x1c\xc5\xdf\x25\xa9\x45\x14\x92\xa1\x9b\xd0\x41\x5c\x0d\x38\x88\x0e\x2a\xb1\xa0\x3d\x44\x84\x22\x7e\x00\x4b\x8a\x16\xa4\x16\x9b\x80\x43\xc1\x96\x2c\x6e\xae\x5d\x5c\xf2\x29\x8a\x83\x04\x07\x83\x1f\xc1\x31\x5b\xc1\x2f\x60\xc1\x41\x72\xde\x49\x7a\xe8\xe6\x24\xff\x1f\x84\x77\xff\x97\x97\xfb\x93\xf5\xdd\xec\x1d\xee\x1b\x8c\x41\x61\x60\x07\x62\x72\x3c\x31\x7b\xd2\x1f\x39\xdf\x11\x78\xd8\x84\x09\x0f\x16\x4c\x91\xb5\x50\xc4\x9b\xd1\x45\x79\xb5\x52\xc8\x7b\xf2\xb1\x54\x98\xd5\x3e\xa5\x5d\x69\x2b\x55\x39\x4b\x3e\x13\x69\x4f\xe4\x1e\xa5\x2b\xd2\x57\x6a\x15\xb4\x02\xc0\x04\x50\x3f\x3a\xc1\x6d\xed\xa3\xfe\xb0\x7e\x77\x1f\xbf\x1e\xfb\x8f\xd5\x4a\x23\x6b\x3c\x3f\x81\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\xfe\x29\x7c\x2d\xb1\x63\x1e\xbd\x97\xfb\x07\x7c\x0c\x60\x90\x9b\x76\xbc\xcd\x80\x41\x7f\x83\xa7\x09\x13\xa1\x17\x3b\xe6\xc3\x8c\x2d\x8f\xc0\x87\xd3\x5c\xc2\x25\x3e\x66\x32\xfe\xf5\x3a\xca\x18\x8f\xa6\x2c\x34\xde\xe6\x79\x9a\xee\x02\x10\x87\x5a\x7e\x00\x4f\x93\xad\xfc\xe2\x12\xdc\xde\x79\x2f\xb8\x0a\x4e\x9b\x70\x3b\x97\x41\xcb\x3d\xeb\x84\x6e\x33\x6c\x5f\xf8\xab\x6d\x1f\x6e\xd0\xba\x0e\xfe\xe4\xbf\x16\x00\x94\x45\x9f\xa1\xf7\x04\xb3\xfd\x00\xb4\x9e\x40\x51\x95\x1d\xc5\x1c\xf4\x7e\x42\xeb\x25\x7e\xf9\x9e\xc9\xae\x41\xa7\xeb\xfc\xbc\x9f\x69\xf3\x67\x00\x00\x00\xff\xff\x15\xa8\x8b\x93\x98\x11\x00\x00"

0 comments on commit fc60834

Please sign in to comment.