mirror of
				https://github.com/netwide-assembler/nasm.git
				synced 2025-10-10 00:25:06 -04:00 
			
		
		
		
	- Panos Minos's LDRDF fix (correct export of relocation records); - Panos Minos's symtab.c verbose dump fix; - Librarian (rdflib) now puts a signature block when creating a library (instead of creating an empty file). In theory it doesn't break binary compatibility, but due to a bug in the original 'rdlib.c' you can't use old LDRDF with new libraries. Fix this bug as well. - Other minor changes in LDRDF.
		
			
				
	
	
		
			15 lines
		
	
	
		
			173 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			173 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #! /bin/sh
 | |
| 
 | |
| [ $1 ] || {
 | |
|     echo "Usage: $0 <library name> <module> [...]"
 | |
|     exit 1
 | |
| }
 | |
| 
 | |
| libname=$1; shift
 | |
| 
 | |
| rdflib c $libname
 | |
| 
 | |
| for f in $*; do
 | |
| 	rdflib a $libname $f $f
 | |
| done
 |