From a2531f8f8c53f3bae27821a120d93d6154a809fb Mon Sep 17 00:00:00 2001 From: Jerome St-Louis Date: Thu, 6 Mar 2014 08:23:52 -0500 Subject: [PATCH] ear; ide/Project: Now compressing 64 bit Windows executables since UPX 3.91 adds support --- ear/extract/Makefile | 2 -- ide/src/project/Project.ec | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/ear/extract/Makefile b/ear/extract/Makefile index afabbc0..36c36a7 100644 --- a/ear/extract/Makefile +++ b/ear/extract/Makefile @@ -203,10 +203,8 @@ ifdef EXECUTABLE_TARGET @-$(call sys_path,$(UPX) $(UPXFLAGS) $(TARGET)) || $(call echo,upx not installed; not compressing.) endif else -ifneq "$(TARGET_ARCH)" "x86_64" @-$(call sys_path,$(UPX) $(UPXFLAGS) $(TARGET)) || $(call echo,upx not installed; not compressing.) endif -endif $(EAR) aw$(EARFLAGS) $(TARGET) ../../ecere/res/vanilla/ecere/actions/folderNew.png ../../ecere/res/vanilla/ecere/actions/goUp.png "ecere/actions" $(EAR) aw$(EARFLAGS) $(TARGET) ../../ecere/res/vanilla/ecere/devices/computer.png ../../ecere/res/vanilla/ecere/devices/driveHardDisk.png ../../ecere/res/vanilla/ecere/devices/driveRemovableMedia.png ../../ecere/res/vanilla/ecere/devices/mediaFloppy.png ../../ecere/res/vanilla/ecere/devices/mediaOptical.png "ecere/devices" $(EAR) aw$(EARFLAGS) $(TARGET) ../../ecere/res/vanilla/ecere/elements/areaClose.png ../../ecere/res/vanilla/ecere/elements/areaMaximize.png ../../ecere/res/vanilla/ecere/elements/areaMinimize.png ../../ecere/res/vanilla/ecere/elements/areaRestore.png ../../ecere/res/vanilla/ecere/elements/arrowDown.png ../../ecere/res/vanilla/ecere/elements/arrowLeft.png ../../ecere/res/vanilla/ecere/elements/arrowRight.png ../../ecere/res/vanilla/ecere/elements/arrowUp.png ../../ecere/res/vanilla/ecere/elements/optionBoxDisabledSelected.png ../../ecere/res/vanilla/ecere/elements/optionBoxDown.png "ecere/elements" diff --git a/ide/src/project/Project.ec b/ide/src/project/Project.ec index b9b5276..1af23e1 100644 --- a/ide/src/project/Project.ec +++ b/ide/src/project/Project.ec @@ -3304,9 +3304,9 @@ private: f.Puts("\t$(UPX) $(UPXFLAGS) $(TARGET)\n"); f.Puts("endif\n"); f.Puts("else\n"); - f.Puts("ifneq \"$(TARGET_ARCH)\" \"x86_64\"\n"); + //f.Puts("ifneq \"$(TARGET_ARCH)\" \"x86_64\"\n"); f.Puts("\t$(UPX) $(UPXFLAGS) $(TARGET)\n"); - f.Puts("endif\n"); + //f.Puts("endif\n"); f.Puts("endif\n"); } } -- 1.8.3.1