mirror of
				https://github.com/Wind4/vlmcsd.git
				synced 2025-11-04 08:23:22 +08:00 
			
		
		
		
	
		
			
	
	
		
			34 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			34 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
								 | 
							
								#!/usr/local/bin/bash
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								export VERBOSE=3
							 | 
						||
| 
								 | 
							
								export DNS_PARSER=OS
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								rm -f vlmcsd-* vlmcs-* vlmcsdmulti-* *_all.* 2>/dev/null
							 | 
						||
| 
								 | 
							
								rm -f vlmcsdmulti vlmcsd vlmcs 2>/dev/null
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								MAKEFLAGS="-B -j12"
							 | 
						||
| 
								 | 
							
								REUSEOBJFLAGS="-j12"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								CF="-static-libgcc -pipe -fwhole-program -fno-common -fno-exceptions -fno-stack-protector -fno-unwind-tables -fno-asynchronous-unwind-tables -fmerge-all-constants"
							 | 
						||
| 
								 | 
							
								CF45="-static-libgcc -pipe -fno-common -fno-exceptions -fno-stack-protector -fno-unwind-tables -fno-asynchronous-unwind-tables -fmerge-all-constants"
							 | 
						||
| 
								 | 
							
								CFCLANG="-pipe -fno-common -fno-exceptions -fno-stack-protector -fno-unwind-tables -fno-asynchronous-unwind-tables -fmerge-all-constants"
							 | 
						||
| 
								 | 
							
								LF="-Wl,-z,norelro"
							 | 
						||
| 
								 | 
							
								LFCLANG="-Wl,-z,norelro"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								gmake allmulti CAT=2 $MAKEFLAGS CC=egcc MULTI_NAME=vlmcsdmulti-OpenBSD-x64 PROGRAM_NAME=vlmcsd-OpenBSD-x64 CLIENT_NAME=vlmcs-OpenBSD-x64 CFLAGS="$CF" LDFLAGS="$LF"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#gmake allmulti $MAKEFLAGS CAT=2 MULTI_NAME=vlmcsdmulti-OpenBSD-x86 PROGRAM_NAME=vlmcsd-OpenBSD-x86 CLIENT_NAME=vlmcs-OpenBSD-x86 CFLAGS="$CF45 -m32" LDFLAGS="$LF"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#gmake $MAKEFLAGS CC=clang PROGRAM_NAME=vlmcsd-OpenBSD-x64-clang CLIENT_NAME=vlmcs-OpenBSD-x64-clang CFLAGS="$CFCLANG" LDFLAGS="$LFCLANG"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								rm *.o
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								strip -s --strip-unneeded --remove-section=.eh_frame_hdr --remove-section=.eh_frame --remove-section=.note.gnu.gold-version --remove-section=.comment --remove-section=.note --remove-section=.note.gnu.build-id --remove-section=.note.ABI-tag vlmcs-* vlmcsd-* vlmcsdmulti-*
							 | 
						||
| 
								 | 
							
								#sstrip -z vlmcs-* vlmcsd-* vlmcsdmulti-*
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								cp -f vlmcsd-OpenBSD-x64 /usr/local/sbin/vlmcsd
							 | 
						||
| 
								 | 
							
								cp -f vlmcs-OpenBSD-x64 /usr/local/bin/vlmcs
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# Copy everything to distribution server
							 | 
						||
| 
								 | 
							
								scp -p vlmcsdmulti-* vlmcsd-* vlmcs-* root@ubuntu64:x/binaries/OpenBSD/intel/
							 |