Skip to content

Commit

Permalink
Remove 32bit architecture dependence
Browse files Browse the repository at this point in the history
  • Loading branch information
holomorph committed Nov 20, 2014
1 parent 4908ca4 commit a20059e
Show file tree
Hide file tree
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
Expand Up @@ -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)
Expand Down
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
Expand Up @@ -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)

Expand Down
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
Expand Up @@ -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)
Expand Down
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
Expand Up @@ -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 \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
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
Expand Up @@ -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 \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
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
Expand Up @@ -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 \
Expand Down
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
Expand Up @@ -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 \
Expand Down

0 comments on commit a20059e

Please sign in to comment.