Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
aa7354d1
Commit
aa7354d1
authored
Jan 03, 2012
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update macosx/build.sh
parent
e0fee1e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
86 additions
and
18 deletions
+86
-18
extras/package/macosx/build.sh
extras/package/macosx/build.sh
+86
-18
No files found.
extras/package/macosx/build.sh
100755 → 100644
View file @
aa7354d1
...
...
@@ -3,16 +3,26 @@ set -e
info
()
{
echo
" [build]
$1
"
local
green
=
"
\0
33[1;32m"
local
normal
=
"
\0
33[0m"
echo
"[
${
green
}
build
${
normal
}
]
$1
"
}
ARCH
=
"x86_64"
SDK
=
"10.6"
usage
()
{
cat
<<
EOF
usage:
$0
[options]
Build vlc in the current directory
OPTIONS:
-h Show some help
-v Be verbose
-k <sdk> Use the specified sdk (default:
$SDK
)
-a <arch> Use the specified arch (default:
$ARCH
)
EOF
}
...
...
@@ -27,13 +37,23 @@ spopd()
popd
>
/dev/null
}
while
getopts
"h"
OPTION
while
getopts
"h
vk:a:
"
OPTION
do
case
$OPTION
in
h
)
usage
exit
1
;;
v
)
set
-x
VERBOSE
=
"yes"
;;
a
)
ARCH
=
$OPTARG
;;
k
)
SDK
=
$OPTARG
;;
esac
done
shift
$((
$OPTIND
-
1
))
...
...
@@ -43,42 +63,90 @@ if [ "x$1" != "x" ]; then
exit
1
fi
#
# Various initialization
#
out
=
"/dev/null"
if
[
"
$VERBOSE
"
=
"yes"
]
;
then
out
=
"/dev/stdout"
fi
info
"Building VLC for the Mac OS X"
spushd
`
dirname
$0
`
/../../..
vlcroot
=
`
pwd
`
spopd
builddir
=
"
${
vlcroot
}
/build-macosx"
builddir
=
`
pwd
`
info
"Building in
\"
$builddir
\"
"
export
CC
=
/Developer/usr/bin/llvm-gcc-4.2
export
CXX
=
/Developer/usr/bin/llvm-g++-4.2
export
OBJC
=
/Developer/usr/bin/llvm-gcc-4.2
export
CC
=
/Developer/usr/bin/clang
export
CXX
=
"/Developer/usr/bin/clang++"
export
OBJC
=
/Developer/usr/bin/clang
export
OSX_VERSION
=
$SDK
export
PATH
=
"
${
vlcroot
}
/extras/tools:
$PATH
"
spushd
"
${
vlcroot
}
/extras/contrib"
./bootstrap
make
TRIPLET
=
$ARCH
-apple-darwin10
#
# vlc/extras/tools
#
info
"Building building tools"
spushd
"
${
vlcroot
}
/extras/tools"
./bootstrap
>
$out
make
>
$out
spopd
mkdir
-p
"
${
builddir
}
"
#
# vlc/contribs
#
info
"Building contribs"
spushd
"
${
vlcroot
}
/contrib"
mkdir
-p
build
&&
cd
build
../bootstrap
--build
=
$TRIPLET
--host
=
$TRIPLET
>
$out
if
[
!
-e
"../
$TRIPLET
"
]
;
then
make prebuilt
>
$out
fi
spopd
#
# vlc/bootstrap
#
info
"Bootstrap-ing configure"
spushd
"
${
vlcroot
}
"
if
!
[
-e
"
${
vlcroot
}
/configure"
]
;
then
${
vlcroot
}
/bootstrap
${
vlcroot
}
/bootstrap
>
$out
fi
spopd
spushd
"
${
builddir
}
"
#
# vlc/configure
#
# Run configure only upon changes.
if
[
"
${
vlcroot
}
/configure"
-nt
config.log
]
;
then
${
vlcroot
}
/configure
\
--enable-debug
${
vlcroot
}
/extras/package/macosx/configure.sh
\
--build
=
$TRIPLET
\
--host
=
$TRIPLET
\
--with-macosx-version-min
=
$OSX_VERSION
>
$out
fi
#
# make
#
core_count
=
`
sysctl
-n
machdep.cpu.core_count
`
let jobs
=
$core_count
+1
info
"Running make -j
$jobs
"
make
-j
$jobs
spopd
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