mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05:00 
			
		
		
		
	Pass -m32 to the linker as well
For unit tests and sample programs, CFLAGS=-m32 is enough to get a 32-bit build, because these programs are all compiled directly from *.c to the executable in one shot. But with makefile rules that first build object files and then link them, LDFLAGS=-m32 is also needed.
This commit is contained in:
		
							parent
							
								
									95f5cbc85a
								
							
						
					
					
						commit
						5d26e7cbfe
					
				@ -989,7 +989,7 @@ component_test_m32_o0 () {
 | 
			
		||||
    # Build once with -O0, to compile out the i386 specific inline assembly
 | 
			
		||||
    msg "build: i386, make, gcc -O0 (ASan build)" # ~ 30s
 | 
			
		||||
    scripts/config.pl full
 | 
			
		||||
    make CC=gcc CFLAGS='-O0 -Werror -Wall -Wextra -m32 -fsanitize=address'
 | 
			
		||||
    make CC=gcc CFLAGS='-O0 -Werror -Wall -Wextra -m32 -fsanitize=address' LDFLAGS='-m32'
 | 
			
		||||
 | 
			
		||||
    msg "test: i386, make, gcc -O0 (ASan build)"
 | 
			
		||||
    make test
 | 
			
		||||
@ -1008,7 +1008,7 @@ component_test_m32_o1 () {
 | 
			
		||||
    scripts/config.pl unset MBEDTLS_MEMORY_BACKTRACE
 | 
			
		||||
    scripts/config.pl unset MBEDTLS_MEMORY_BUFFER_ALLOC_C
 | 
			
		||||
    scripts/config.pl unset MBEDTLS_MEMORY_DEBUG
 | 
			
		||||
    make CC=gcc CFLAGS='-O1 -Werror -Wall -Wextra -m32 -fsanitize=address'
 | 
			
		||||
    make CC=gcc CFLAGS='-O1 -Werror -Wall -Wextra -m32 -fsanitize=address' LDFLAGS='-m32'
 | 
			
		||||
 | 
			
		||||
    msg "test: i386, make, gcc -O1 (ASan build)"
 | 
			
		||||
    make test
 | 
			
		||||
@ -1023,7 +1023,7 @@ support_test_m32_o1 () {
 | 
			
		||||
component_test_mx32 () {
 | 
			
		||||
    msg "build: 64-bit ILP32, make, gcc" # ~ 30s
 | 
			
		||||
    scripts/config.pl full
 | 
			
		||||
    make CC=gcc CFLAGS='-Werror -Wall -Wextra -mx32'
 | 
			
		||||
    make CC=gcc CFLAGS='-Werror -Wall -Wextra -mx32' LDFLAGS='-mx32'
 | 
			
		||||
 | 
			
		||||
    msg "test: 64-bit ILP32, make, gcc"
 | 
			
		||||
    make test
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user