forked from mirrors/linux
		
	selftests: kvm: fix for compilers that do not support -no-pie
-no-pie was added to GCC at the same time as their configuration option --enable-default-pie. Compilers that were built before do not have -no-pie, but they also do not need it. Detect the option at build time. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
		
							parent
							
								
									c68c21ca92
								
							
						
					
					
						commit
						c2390f16fc
					
				
					 1 changed files with 7 additions and 1 deletions
				
			
		| 
						 | 
					@ -1,3 +1,5 @@
 | 
				
			||||||
 | 
					include ../../../../scripts/Kbuild.include
 | 
				
			||||||
 | 
					
 | 
				
			||||||
all:
 | 
					all:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
top_srcdir = ../../../..
 | 
					top_srcdir = ../../../..
 | 
				
			||||||
| 
						 | 
					@ -30,7 +32,11 @@ INSTALL_HDR_PATH = $(top_srcdir)/usr
 | 
				
			||||||
LINUX_HDR_PATH = $(INSTALL_HDR_PATH)/include/
 | 
					LINUX_HDR_PATH = $(INSTALL_HDR_PATH)/include/
 | 
				
			||||||
LINUX_TOOL_INCLUDE = $(top_srcdir)/tools/include
 | 
					LINUX_TOOL_INCLUDE = $(top_srcdir)/tools/include
 | 
				
			||||||
CFLAGS += -O2 -g -std=gnu99 -fno-stack-protector -fno-PIE -I$(LINUX_TOOL_INCLUDE) -I$(LINUX_HDR_PATH) -Iinclude -I$(<D) -Iinclude/$(UNAME_M) -I..
 | 
					CFLAGS += -O2 -g -std=gnu99 -fno-stack-protector -fno-PIE -I$(LINUX_TOOL_INCLUDE) -I$(LINUX_HDR_PATH) -Iinclude -I$(<D) -Iinclude/$(UNAME_M) -I..
 | 
				
			||||||
LDFLAGS += -pthread -no-pie
 | 
					
 | 
				
			||||||
 | 
					no-pie-option := $(call try-run, echo 'int main() { return 0; }' | \
 | 
				
			||||||
 | 
					        $(CC) -Werror $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) -no-pie -x c - -o "$$TMP", -no-pie)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					LDFLAGS += -pthread $(no-pie-option)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# After inclusion, $(OUTPUT) is defined and
 | 
					# After inclusion, $(OUTPUT) is defined and
 | 
				
			||||||
# $(TEST_GEN_PROGS) starts with $(OUTPUT)/
 | 
					# $(TEST_GEN_PROGS) starts with $(OUTPUT)/
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue