Skip to content

Commit

Permalink
Merge pull request #21 from holomorph/noarch
Browse files Browse the repository at this point in the history
Remove 32bit architecture dependence
miguelsousa committed Nov 20, 2014
2 parents 4908ca4 + a20059e commit 193077f
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion FDK/Tools/Programs/public/config/linux/gcc/gcc.mak
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ PLATFORM = linux
HARDWARE = i86
COMPILER = gcc
SYS_LIBS = -lm
XFLAGS = -m32
XFLAGS =

# Directories (relative to build directory)
CT_LIB_DIR = $(ROOT_DIR)/../public/lib/lib/$(PLATFORM)/$(CONFIG)
2 changes: 1 addition & 1 deletion FDK/Tools/Programs/public/lib/config/linux/gcc/gcc.mak
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
PLATFORM = linux
HARDWARE = i86
COMPILER = gcc
XFLAGS = -m32
XFLAGS =
# Directories (relative to build directory)
LIB_DIR = $(ROOT_DIR)/lib/$(PLATFORM)/$(CONFIG)

2 changes: 1 addition & 1 deletion FDK/Tools/Programs/public/lib/config/linux/gcc/gcc_tx.mak
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
PLATFORM = linux
HARDWARE = i86
COMPILER = gcc
XFLAGS = -m32
XFLAGS =

# Directories (relative to build directory)
LIB_DIR = $(ROOT_DIR)/lib/$(PLATFORM)/$(CONFIG)
2 changes: 1 addition & 1 deletion FDK/Tools/Programs/sfntdiff/build/linux/gcc/debug/Makefile
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ CONFIG = debug
ROOT_DIR = ../../../..
OBJECT_DIR = .

CFLAGS = $(STD_OPTS) -m32 -g -I$(ROOT_DIR)/../spot/sfnt_includes
CFLAGS = $(STD_OPTS) -g -I$(ROOT_DIR)/../spot/sfnt_includes

# Program
PRG_SRCS = $(SRC_DIR)/Dmain.c \
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ CONFIG = release
ROOT_DIR = ../../../..
OBJECT_DIR = .

CFLAGS = $(STD_OPTS) -m32 -I$(ROOT_DIR)/../spot/sfnt_includes
CFLAGS = $(STD_OPTS) -I$(ROOT_DIR)/../spot/sfnt_includes

# Program
PRG_SRCS = $(SRC_DIR)/Dmain.c \
2 changes: 1 addition & 1 deletion FDK/Tools/Programs/sfntedit/build/linux/gcc/debug/Makefile
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ CONFIG = debug
ROOT_DIR = ../../../..
OBJECT_DIR = .

CFLAGS = $(STD_OPTS) -m32 -g -I$(ROOT_DIR)/../spot/sfnt_includes
CFLAGS = $(STD_OPTS) -g -I$(ROOT_DIR)/../spot/sfnt_includes

# Program
PRG_SRCS = $(SRC_DIR)/Eda.c \
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ CONFIG = release
ROOT_DIR = ../../../..
OBJECT_DIR = .

CFLAGS = $(STD_OPTS) -m32 -I$(ROOT_DIR)/../spot/sfnt_includes
CFLAGS = $(STD_OPTS) -I$(ROOT_DIR)/../spot/sfnt_includes

# Program
PRG_SRCS = $(SRC_DIR)/Eda.c \
2 changes: 1 addition & 1 deletion FDK/Tools/Programs/spot/build/linux/gcc/debug/Makefile
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ PRG_TARGET = $(EXE_DIR)/spot
# Build targets
TARGETS = $(PRG_TARGET)

CFLAGS = $(STD_OPTS) -m32 -g -I$(ROOT_DIR)/sfnt_includes -I$(SRC_DIR) -DEXECUTABLE=1 -g
CFLAGS = $(STD_OPTS) -g -I$(ROOT_DIR)/sfnt_includes -I$(SRC_DIR) -DEXECUTABLE=1 -g

# Program
PRG_SRCS = $(SRC_DIR)/BASE.c \
2 changes: 1 addition & 1 deletion FDK/Tools/Programs/spot/build/linux/gcc/release/Makefile
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ PRG_TARGET = $(EXE_DIR)/spot
# Build targets
TARGETS = $(PRG_TARGET)

CFLAGS = $(STD_OPTS) -m32 -g -I$(ROOT_DIR)/sfnt_includes -I$(SRC_DIR) -DEXECUTABLE=1
CFLAGS = $(STD_OPTS) -g -I$(ROOT_DIR)/sfnt_includes -I$(SRC_DIR) -DEXECUTABLE=1

# Program
PRG_SRCS = $(SRC_DIR)/BASE.c \

0 comments on commit 193077f

Please sign in to comment.