Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
018f3af4
Commit
018f3af4
authored
Nov 10, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.ac: On Mac OS X, if ld has the text reloc bug, disable mmx and sse.
parent
d431f940
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
configure.ac
configure.ac
+20
-1
No files found.
configure.ac
View file @
018f3af4
...
@@ -218,7 +218,26 @@ case "${host_os}" in
...
@@ -218,7 +218,26 @@ case "${host_os}" in
echo " Assuming --disable-glx"
echo " Assuming --disable-glx"
enable_xvideo="no"
enable_xvideo="no"
echo " Assuming --disable-xvideo"
echo " Assuming --disable-xvideo"
fi
if test ".`uname -p`" = ".i386"; then
dnl Due to a ld(64) bug in 10.5 we cannot use our mmx code
dnl without hacking it a lot, we disable mmx and sse.
dnl (that bug is about ld being unable to handle
dnl text relocation)
save_cflags="$CFLAGS"
CFLAGS="$CFLAGS -dynamiclib"
AC_TRY_LINK(
[int a;], [asm("movq _a,%mm0\n");],
ac_ld_does_not_support_text_reloc=no,
ac_ld_does_not_support_text_reloc=yes)
CFLAGS="$save_cflags"
if test "x$ac_ld_does_not_support_text_reloc" = "xyes"; then
enable_mmx="no"
echo " Assuming --disable-mmx (due to a bug in ld)"
enable_sse="no"
echo " Assuming --disable-sse (due to a bug in ld)"
fi
fi
fi
;;
;;
*mingw32* | *cygwin* | *wince* | *mingwce* | *pe*)
*mingw32* | *cygwin* | *wince* | *mingwce* | *pe*)
...
...
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