-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The gcc-based go compiler has some advantages (speed notably) over the standalone go compiler, but it's not available for all distros: https://blog.golang.org/gccgo-in-gcc-471 Alpine and macOS have no support for gccgo at all at present. Signed-off-by: Shay Gordon <moebius.le.roi@gmail.com>
- Loading branch information
1 parent
5011fe7
commit 28172a5
Showing
3 changed files
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
# limitations under the License. | ||
|
||
GO = go | ||
GOFLAGS = -compiler gccgo | ||
GOFLAGS = | ||
|
||
SRCDIR = . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters