Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
81ace571
Commit
81ace571
authored
Nov 21, 2006
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--target is only used when building a compiler
parent
8d7b5884
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
INSTALL.wince
INSTALL.wince
+1
-1
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+4
-4
No files found.
INSTALL.wince
View file @
81ace571
...
@@ -73,7 +73,7 @@ CFLAGS="$CFLAGS -I/usr/local/wince/contrib-xscale/include" \
...
@@ -73,7 +73,7 @@ CFLAGS="$CFLAGS -I/usr/local/wince/contrib-xscale/include" \
LDFLAGS="-L/usr/local/wince/cross-tools/lib" \
LDFLAGS="-L/usr/local/wince/cross-tools/lib" \
LDFLAGS="$LDFLAGS -L/usr/local/wince/contrib-xscale/lib" \
LDFLAGS="$LDFLAGS -L/usr/local/wince/contrib-xscale/lib" \
CC="arm-wince-pe-gcc -mcpu=xscale" \
CC="arm-wince-pe-gcc -mcpu=xscale" \
../configure --host=arm-wince-pe
--target=arm-wince-pe
\
../configure --host=arm-wince-pe \
--build=i686-linux --prefix=/usr/local/wince \
--build=i686-linux --prefix=/usr/local/wince \
--disable-sdl --disable-gtk --disable-dvdnav --disable-dvdread \
--disable-sdl --disable-gtk --disable-dvdnav --disable-dvdread \
--disable-nls --disable-sout --disable-vlm --disable-wxwindows \
--disable-nls --disable-sout --disable-vlm --disable-wxwindows \
...
...
extras/contrib/src/Makefile
View file @
81ace571
...
@@ -91,7 +91,7 @@ endif
...
@@ -91,7 +91,7 @@ endif
#
#
# cross compiling
# cross compiling
#
#
HOSTCONF
=
--
target
=
$(HOST)
--
host
=
$(HOST)
--build
=
$(BUILD)
HOSTCONF
=
--host
=
$(HOST)
--build
=
$(BUILD)
ifneq
($(BUILD),$(HOST))
ifneq
($(BUILD),$(HOST))
#
#
# Compiling for MinGW under Cygwin could be deemed as cross compiling
# Compiling for MinGW under Cygwin could be deemed as cross compiling
...
@@ -1540,7 +1540,7 @@ libgcrypt: libgcrypt-$(GCRYPT_VERSION).tar.bz2
...
@@ -1540,7 +1540,7 @@ libgcrypt: libgcrypt-$(GCRYPT_VERSION).tar.bz2
.gcrypt
:
libgcrypt .gpg-error
.gcrypt
:
libgcrypt .gpg-error
ifdef
HAVE_WIN32
ifdef
HAVE_WIN32
(
cd
$<
;
./autogen.sh
&&
$(HOSTCC)
./configure
$(HOSTCONF)
--
target
=
i586-mingw32msvc
--
prefix
=
$(PREFIX)
--program-prefix
=
""
CFLAGS
=
"
$(CFLAGS)
"
&&
sed
-i
46s@sys/times.h@sys/time.h@ cipher/random.c
&&
make
&&
make
install
)
(
cd
$<
;
./autogen.sh
&&
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
--program-prefix
=
""
CFLAGS
=
"
$(CFLAGS)
"
&&
sed
-i
46s@sys/times.h@sys/time.h@ cipher/random.c
&&
make
&&
make
install
)
else
else
ifeq
($(HOST),i686-apple-darwin8)
ifeq
($(HOST),i686-apple-darwin8)
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
--disable-asm
CFLAGS
=
"
$(CFLAGS)
"
&&
make
&&
make
install
)
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
--disable-asm
CFLAGS
=
"
$(CFLAGS)
"
&&
make
&&
make
install
)
...
@@ -1567,7 +1567,7 @@ gnutls: gnutls-$(GNUTLS_VERSION).tar.bz2
...
@@ -1567,7 +1567,7 @@ gnutls: gnutls-$(GNUTLS_VERSION).tar.bz2
.gnutls
:
gnutls .gcrypt .gpg-error
.gnutls
:
gnutls .gcrypt .gpg-error
ifdef
HAVE_WIN32
ifdef
HAVE_WIN32
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
CFLAGS
=
"
$(CFLAGS)
"
--
target
=
i586-mingw32msvc
--
program-prefix
=
""
&&
cd
gl
&&
make
&&
cd
../lib
&&
make
&&
make
install
&&
cd
../includes
&&
make
install
)
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
CFLAGS
=
"
$(CFLAGS)
"
--program-prefix
=
""
&&
cd
gl
&&
make
&&
cd
../lib
&&
make
&&
make
install
&&
cd
../includes
&&
make
install
)
else
else
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
CFLAGS
=
"
$(CFLAGS)
"
&&
cd
gl
&&
make
&&
cd
../lib
&&
make
&&
make
install
&&
cd
../includes
&&
make
install
)
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
CFLAGS
=
"
$(CFLAGS)
"
&&
cd
gl
&&
make
&&
cd
../lib
&&
make
&&
make
install
&&
cd
../includes
&&
make
install
)
endif
endif
...
@@ -1728,7 +1728,7 @@ tiff: tiff-$(TIFF_VERSION).tar.gz
...
@@ -1728,7 +1728,7 @@ tiff: tiff-$(TIFF_VERSION).tar.gz
.tiff
:
tiff
.tiff
:
tiff
ifdef
HAVE_WIN32
ifdef
HAVE_WIN32
(
cd
$<
;
./configure
--target
=
i586-mingw32msvc
--with-CFLAGS
=
"
$(CFLAGS)
"
--with-JPEG
=
no
--with-ZIP
=
no
--prefix
=
$(PREFIX)
--host
=
$(HOST)
&&
make
-C
port
&&
make
-C
libtiff
&&
make
-C
libtiff
install
)
(
cd
$<
;
./configure
--with-CFLAGS
=
"
$(CFLAGS)
"
--with-JPEG
=
no
--with-ZIP
=
no
--prefix
=
$(PREFIX)
--host
=
$(HOST)
&&
make
-C
port
&&
make
-C
libtiff
&&
make
-C
libtiff
install
)
else
else
(
cd
$<
;
./configure
--with-CFLAGS
=
"
$(CFLAGS)
"
--with-JPEG
=
no
--with-ZIP
=
no
--prefix
=
$(PREFIX)
&&
make
-C
port
&&
make
-C
libtiff
&&
make
-C
libtiff
install
)
(
cd
$<
;
./configure
--with-CFLAGS
=
"
$(CFLAGS)
"
--with-JPEG
=
no
--with-ZIP
=
no
--prefix
=
$(PREFIX)
&&
make
-C
port
&&
make
-C
libtiff
&&
make
-C
libtiff
install
)
endif
endif
...
...
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