Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
ea94227e
Commit
ea94227e
authored
Jan 22, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Tuned up optimization flags.
parent
419eb2fe
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
70 deletions
+39
-70
Makefile.in
Makefile.in
+2
-3
configure
configure
+37
-60
configure.in
configure.in
+0
-7
No files found.
Makefile.in
View file @
ea94227e
...
...
@@ -106,10 +106,9 @@ endif
# Optimizations : don't compile debug versions with them
ifeq
($(OPTIMS),1)
CFLAGS
+=
-O
6
CFLAGS
+=
-ffast-math
-funroll-loops
-funroll-all-loops
CFLAGS
+=
-O
3
CFLAGS
+=
-ffast-math
-funroll-loops
CFLAGS
+=
-fomit-frame-pointer
CFLAGS
+=
@BIZARRE_OPTIMS@
# Optimizations for x86 familiy
ifneq
(,$(findstring 86,$(ARCH)))
...
...
configure
View file @
ea94227e
This diff is collapsed.
Click to expand it.
configure.in
View file @
ea94227e
...
...
@@ -78,13 +78,6 @@ void foo() { int meuh; ntohl(meuh); }],,
AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if ntohl is in <sys/param.h>.)
AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
dnl Check for special optimization flags
CFLAGS="${CFLAGS} -fargument-noalias-global -fstrict-aliasing"
AC_MSG_CHECKING([if \$CC accepts -fstrict-aliasing])
AC_TRY_COMPILE([],,
BIZARRE_OPTIMS="-fstrict-aliasing"
AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
dnl Check for -rdynamic flag
CFLAGS="${CFLAGS} -rdynamic"
AC_MSG_CHECKING([if \$CC accepts -rdynamic])
...
...
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