summaryrefslogtreecommitdiff
path: root/UnixPkg/build.sh
diff options
context:
space:
mode:
authorjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2011-03-05 08:08:47 +0000
committerjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2011-03-05 08:08:47 +0000
commit692477d411ec4e489caa04308ab6ed12edb3646d (patch)
treea3650c669a7e91f9dbb07c0e7fe8edc7b9b00ce9 /UnixPkg/build.sh
parent2dcef689963d9f975b0d792e677c2d43cf3cc995 (diff)
downloadedk2-platforms-692477d411ec4e489caa04308ab6ed12edb3646d.tar.xz
UnixPkg: Fix build for Linux
UnixPkg/UnixSnpDxe is currently BSD/OS X specific. Therefore we only build it if "-D NETWORK_SUPPORT" is used on the build command line. UnixPkg/build.sh and UnixPkg/build64.sh are updated to automatically define NETWORK_SUPPORT if building on OS X. <net/if_dl.h> and <net/bpf.h> are also only included in UnixPkg/Include/Common/UnixInclude.h if __APPLE__ is defined. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11346 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'UnixPkg/build.sh')
-rwxr-xr-xUnixPkg/build.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/UnixPkg/build.sh b/UnixPkg/build.sh
index a77a5973a0..2498914e1c 100755
--- a/UnixPkg/build.sh
+++ b/UnixPkg/build.sh
@@ -41,6 +41,7 @@ fi
# Pick a default tool type for a given OS
#
TARGET_TOOLS=MYTOOLS
+NETWORK_SUPPORT=
case `uname` in
CYGWIN*) echo Cygwin not fully supported yet. ;;
Darwin*)
@@ -52,6 +53,7 @@ case `uname` in
else
TARGET_TOOLS=XCODE32
fi
+ NETWORK_SUPPORT="-D NETWORK_SUPPORT"
;;
Linux*) TARGET_TOOLS=ELFGCC ;;
@@ -115,6 +117,6 @@ done
#
echo $PATH
echo `which build`
-build -p $WORKSPACE/UnixPkg/UnixPkg.dsc -a IA32 -t $TARGET_TOOLS -n 3 $1 $2 $3 $4 $5 $6 $7 $8
+build -p $WORKSPACE/UnixPkg/UnixPkg.dsc -a IA32 -t $TARGET_TOOLS $NETWORK_SUPPORT -n 3 $1 $2 $3 $4 $5 $6 $7 $8
exit $?