Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 373607 | Differences between
and this patch

Collapse All | Expand All

(-)a/Makefile (+1 lines)
Lines 259-264 $(BUILD_DIR)/%.h: $(SRC_DIR)/includes/%.txt Link Here
259
$(BUILD_DIR)/%.o:  $(BUILD_DIR)/%.pas
259
$(BUILD_DIR)/%.o:  $(BUILD_DIR)/%.pas
260
	@echo "===>  ASSEMBLE  $@"
260
	@echo "===>  ASSEMBLE  $@"
261
	$(Q)$(PAS) -i $(PASFLAGS) -o $(BUILD_DIR)/$*.s $<  '$(DEFINES)'
261
	$(Q)$(PAS) -i $(PASFLAGS) -o $(BUILD_DIR)/$*.s $<  '$(DEFINES)'
262
	@cat fix_gnustack.txt >> $(BUILD_DIR)/$*.s
262
	$(Q)$(AS) $(ASFLAGS)  $(BUILD_DIR)/$*.s -o $@
263
	$(Q)$(AS) $(ASFLAGS)  $(BUILD_DIR)/$*.s -o $@
263
264
264
ifeq ($(findstring $(MAKECMDGOALS),clean),)
265
ifeq ($(findstring $(MAKECMDGOALS),clean),)
(-)a/fix_gnustack.txt (+3 lines)
Line 0 Link Here
1
#if defined(__linux__) && defined(__ELF__)
2
.section .note.GNU-stack,"",%progbits
3
#endif
(-)a/src/loadData.s (+3 lines)
Lines 20-22 ret Link Here
20
.size _loadData, .-_loadData
20
.size _loadData, .-_loadData
21
21
22
22
23
#if defined(__linux__) && defined(__ELF__)
24
.section .note.GNU-stack,"",%progbits
25
#endif

Return to bug 373607