Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
83664340
Commit
83664340
authored
Dec 07, 2010
by
Albert Strasheim
Committed by
Russ Cox
Dec 07, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: Allow archiver to be specified in the environment with HOST_AR.
R=rsc CC=golang-dev
https://golang.org/cl/2515043
parent
802360ed
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
src/Make.clib
src/Make.clib
+1
-1
src/Make.inc
src/Make.inc
+1
-0
No files found.
src/Make.clib
View file @
83664340
...
...
@@ -19,7 +19,7 @@ $(QUOTED_GOROOT)/lib/$(LIB): $(LIB)
cp $(LIB) "$(GOROOT)/lib/$(LIB)"
$(LIB): $(OFILES)
ar
rsc $(LIB) $(OFILES)
$(HOST_AR)
rsc $(LIB) $(OFILES)
CLEANFILES+=y.tab.[ch] y.output a.out $(LIB)
...
...
src/Make.inc
View file @
83664340
...
...
@@ -101,6 +101,7 @@ HOST_CC=quietgcc
HOST_LD=quietgcc
HOST_O=o
HOST_YFLAGS=-d
HOST_AR?=ar
# These two variables can be overridden in the environment
# to build with other flags. They are like $CFLAGS and $LDFLAGS
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment