mirror of
https://github.com/Wind4/vlmcsd.git
synced 2025-06-22 09:33:41 +02:00
vlmcsd-svn812-2015-08-30-Hotbird64
This commit is contained in:
25
make_minix
Normal file
25
make_minix
Normal file
@ -0,0 +1,25 @@
|
||||
#!/bin/sh
|
||||
|
||||
export VLMCSD_VERSION=svn$(ssh root@ubuntu64.internal "cd x; svnversion")
|
||||
scp -p make_minix root@ubuntu64.internal:x
|
||||
scp -pr root@ubuntu64.internal:x/* .
|
||||
|
||||
|
||||
# Compile vlmcsd binaries for Minix 3
|
||||
|
||||
SUFFIX=-minix-$(uname -r)-x86
|
||||
export CC=clang
|
||||
export CFLAGS="-pipe -fno-common -fno-exceptions -fno-stack-protector -fno-unwind-tables -fno-asynchronous-unwind-tables -fmerge-all-constants"
|
||||
export LDFLAGS="-Wl,--hash-style=sysv -Wl,-z,norelro -Wl,--build-id=none"
|
||||
export PROGRAM_NAME=vlmcsd$SUFFIX
|
||||
export CLIENT_NAME=vlmcs$SUFFIX
|
||||
export MULTI_NAME=vlmcsdmulti$SUFFIX
|
||||
|
||||
gmake clean
|
||||
gmake -B
|
||||
rm -f vlmcsd.o vlmcs.o vlmcsdmulti.o
|
||||
gmake $MULTI_NAME
|
||||
|
||||
strip -s --strip-unneeded --remove-section .eh_frame_hdr --remove-section .eh_frame --remove-section .ident --remove-section .note.minix.ident --remove-section .note.netbsd.pax --remove-section=.note.gnu.gold-version --remove-section=.comment --remove-section=.note --remove-section=.note.gnu.build-id --remove-section=.note.ABI-tag *$SUFFIX
|
||||
|
||||
scp -p *$SUFFIX root@ubuntu64.internal:x/binaries/Minix/intel/
|
Reference in New Issue
Block a user