Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion util/make/gcc-cross-linux.mak
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ CDEFN = -D
OEXT = .o

AS = $(TOOLS)/bin/$(TPREF)as

# Linking is done using gcc.
LD = $(TOOLS)/bin/$(TPREF)gcc
EXEOUT = -o
EXE = .exe
Expand Down
2 changes: 1 addition & 1 deletion util/make/gcc.mak
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ OEXT = .o
AS = $(TOOLS)/bin/as

# Variable: CC
# name of the linker
# name of the linker, linking is done using gcc.
LD = $(TOOLS)/bin/gcc
LDPP = $(TOOLS)/bin/g++
EXEOUT = -o
Expand Down
2 changes: 1 addition & 1 deletion util/make/gcc32-x86.mak
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ OEXT = .o
AS = $(TOOLS)/bin/as

# Variable: CC
# name of the linker
# name of the linker, linking is done using gcc.
LD = $(TOOLS)/bin/gcc
EXEOUT = -o
EXE = .exe
Expand Down
2 changes: 1 addition & 1 deletion util/make/gcc64.mak
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ CDEFN = -D
OEXT = .o

AS = $(TOOLS)/bin/as

# Linking is done using gcc.
LD = $(TOOLS)/bin/gcc
EXEOUT = -o
EXE = .exe
Expand Down