Created
November 28, 2015 21:40
-
-
Save ntalbott/75a8aa269b2d310bf02f to your computer and use it in GitHub Desktop.
Patch allowing cross-compilation for ipxrelay
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
diff --git a/Makefile b/Makefile | |
index 873fb1b..20dcc64 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -1,4 +1,5 @@ | |
-CC = gcc | |
+CROSSCOMPILE ?= | |
+CC = $(CROSSCOMPILE)gcc | |
CWARN = -W -Wall | |
COPT = -g -O2 | |
CREQ = |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment