Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding comments on linker #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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