Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
304d586d
Commit
304d586d
authored
Aug 11, 2008
by
Loren Merritt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
yasm buildsystem
Originally committed as revision 14696 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
9edae4ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
common.mak
common.mak
+7
-0
configure
configure
+27
-0
No files found.
common.mak
View file @
304d586d
...
...
@@ -8,6 +8,7 @@ ifndef SUBDIR
vpath %.c $(SRC_DIR)
vpath %.h $(SRC_DIR)
vpath %.S $(SRC_DIR)
vpath %.asm $(SRC_DIR)
ifeq ($(SRC_DIR),$(SRC_PATH_BARE))
BUILD_ROOT_REL = .
...
...
@@ -96,6 +97,12 @@ $(SUBDIR)%-test.o: $(SUBDIR)%.c
$(SUBDIR)%-test.o: $(SUBDIR)%-test.c
$(CC) $(CFLAGS) -DTEST -c -o $$@ $$^
$(SUBDIR)i386/%.o: $(SUBDIR)i386/%.asm
$(YASM) $(YASMFLAGS) -I $$(<D)/ -o $$@ $$<
$(SUBDIR)i386/%.d: $(SUBDIR)i386/%.asm
$(YASM) $(YASMFLAGS) -I $$(<D)/ -M -o $$(@:%.d=%.o) $$< > $$@
clean::
rm -f $(TESTS) $(addprefix $(SUBDIR),$(CLEANFILES) $(CLEANSUFFIXES) $(LIBSUFFIXES)) \
$(addprefix $(SUBDIR), $(foreach suffix,$(CLEANSUFFIXES),$(addsuffix /$(suffix),$(DIRS))))
...
...
configure
View file @
304d586d
...
...
@@ -445,6 +445,14 @@ int foo(void){ asm volatile($asm); }
EOF
}
check_yasm
(){
log check_yasm
"
$@
"
echo
"
$1
"
>
$TMPS
log_file
$TMPS
shift
1
check_cmd
$yasmexe
$YASMFLAGS
"
$@
"
-o
$TMPO
$TMPS
}
check_ld
(){
log check_ld
"
$@
"
check_cc
||
return
...
...
@@ -781,6 +789,7 @@ HAVE_LIST="
termios_h
threads
winsock2_h
yasm
"
CMDLINE_SELECT
=
"
...
...
@@ -930,12 +939,14 @@ shlibdir_default="$libdir_default"
# toolchain
cc
=
"gcc"
yasmexe
=
"yasm"
ar
=
"ar"
nm
=
"nm"
ranlib
=
"ranlib"
strip
=
"strip"
asmalign_pot
=
"unknown"
ln_s
=
"ln -sf"
objformat
=
"elf"
# machine
arch
=
`
uname
-m
`
...
...
@@ -1091,6 +1102,7 @@ echo "# $0 $@" > $logfile
set
>>
$logfile
cc
=
"
${
cross_prefix
}${
cc
}
"
yasmexe
=
"
${
cross_prefix
}${
yasmexe
}
"
ar
=
"
${
cross_prefix
}${
ar
}
"
nm
=
"
${
cross_prefix
}${
nm
}
"
ranlib
=
"
${
cross_prefix
}${
ranlib
}
"
...
...
@@ -1245,6 +1257,7 @@ case $target_os in
SLIBNAME_WITH_VERSION
=
'$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
SLIBNAME_WITH_MAJOR
=
'$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
FFSERVERLDFLAGS
=
-Wl
,-bind_at_load
objformat
=
"macho"
;;
mingw32
*
)
target_os
=
mingw32
...
...
@@ -1271,6 +1284,7 @@ case $target_os in
install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)"'
SLIB_UNINSTALL_EXTRA_CMD
=
'rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"'
SHFLAGS
=
'-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
objformat
=
"win32"
;;
cygwin
*
)
target_os
=
cygwin
...
...
@@ -1287,12 +1301,14 @@ case $target_os in
SLIBNAME_WITH_VERSION
=
'$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
SLIBNAME_WITH_MAJOR
=
'$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
SHFLAGS
=
'-shared -Wl,--enable-auto-image-base'
objformat
=
"win32"
;;
*
-dos
|
freedos|opendos
)
disable ffplay ffserver vhook
disable
$INDEV_LIST
$OUTDEV_LIST
network_extralibs
=
"-lsocket"
EXESUF
=
".exe"
objformat
=
"win32"
;;
linux
)
enable
dv1394
...
...
@@ -1535,6 +1551,15 @@ EOF
enabled mmx2
&&
check_asm mmx2
'"movss %xmm0, %xmm0"'
check_asm bswap
'"bswap %%eax" ::: "%eax"'
YASMFLAGS
=
"-f
$objformat
-DARCH_
$(
toupper
$arch
)
"
enabled x86_64
&&
append YASMFLAGS
"-m amd64"
enabled_all x86_64 shared
&&
append YASMFLAGS
"-DPIC"
case
"
$objformat
"
in
elf
)
enabled debug
&&
append YASMFLAGS
"-g dwarf2"
;;
*
)
append YASMFLAGS
"-DPREFIX"
;;
esac
check_yasm
"pabsw xmm0, xmm0"
&&
enable
yasm
fi
# check for assembler specific support
...
...
@@ -2028,6 +2053,7 @@ echo "INCDIR=\$(DESTDIR)$incdir" >> config.mak
echo
"BINDIR=
\$
(DESTDIR)
$bindir
"
>>
config.mak
echo
"MANDIR=
\$
(DESTDIR)
$mandir
"
>>
config.mak
echo
"CC=
$cc
"
>>
config.mak
echo
"YASM=
$yasmexe
"
>>
config.mak
echo
"AR=
$ar
"
>>
config.mak
echo
"RANLIB=
$ranlib
"
>>
config.mak
echo
"LN_S=
$ln_s
"
>>
config.mak
...
...
@@ -2040,6 +2066,7 @@ echo "VHOOKCFLAGS=$VHOOKCFLAGS" >> config.mak
echo
"LDFLAGS=
$LDFLAGS
"
>>
config.mak
echo
"FFSERVERLDFLAGS=
$FFSERVERLDFLAGS
"
>>
config.mak
echo
"SHFLAGS=
$SHFLAGS
"
>>
config.mak
echo
"YASMFLAGS=
$YASMFLAGS
"
>>
config.mak
echo
"VHOOKSHFLAGS=
$VHOOKSHFLAGS
"
>>
config.mak
echo
"VHOOKLIBS=
$VHOOKLIBS
"
>>
config.mak
echo
"LIBOBJFLAGS=
$LIBOBJFLAGS
"
>>
config.mak
...
...
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