Skip to content

Commit

Permalink
same update as .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
songdongsheng committed Feb 17, 2019
1 parent 3494f77 commit 118f4e3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
* text eol=lf

su-exec -text
su-exec-glibc-shared -text
su-exec-glibc-static -text
su-exec-musl-shared -text
su-exec-musl-static -text
su-exec-*shared* -text
su-exec-*static* -text
11 changes: 11 additions & 0 deletions vendor/tmp.xi21zqPPyF
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/sh

apk update
apk add gcc musl-dev

cd /opt/

gcc -std=gnu99 -Os -Wall -Wextra -pedantic -o su-exec-musl-static su-exec.c -static
gcc -std=gnu99 -Os -Wall -Wextra -pedantic -s -o su-exec-musl-shared su-exec.c

du -ks su-exec-musl-*

0 comments on commit 118f4e3

Please sign in to comment.