Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
X
x264
Manage
Activity
Members
Labels
Plan
Issues
26
Issue boards
Milestones
Wiki
Code
Merge requests
16
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
x264
Commits
95634be6
Commit
95634be6
authored
3 years ago
by
Anton Mitrofanov
Browse files
Options
Downloads
Patches
Plain Diff
Fix build on MIPS with AviSynth+ support
parent
35fe20d1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!105
Fix build on MIPS with AviSynth+ support
Pipeline
#193183
passed with stages
Stage:
Stage:
Stage:
in 10 minutes and 42 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
extras/avisynth_c.h
+1
-20
1 addition, 20 deletions
extras/avisynth_c.h
with
1 addition
and
20 deletions
extras/avisynth_c.h
+
1
−
20
View file @
95634be6
...
...
@@ -106,8 +106,6 @@
# define AVS_RISCV
#elif defined(__sparc_v9__)
# define AVS_SPARC
#else
# error Unsupported CPU architecture.
#endif
// VC++ LLVM-Clang-cl MinGW-Gnu
...
...
@@ -122,27 +120,12 @@
# define AVS_CLANG
#if defined(_MSC_VER)
# define AVS_MSVC
# define AVS_FORCEINLINE __attribute__((always_inline))
#else
# define AVS_FORCEINLINE __attribute__((always_inline)) inline
#endif
#elif
defined(_MSC_VER)
#elif defined(_MSC_VER)
# define AVS_MSVC
# define AVS_MSVC_PURE
# define AVS_FORCEINLINE __forceinline
#elif defined(__GNUC__)
# define AVS_GCC
# define AVS_FORCEINLINE __attribute__((always_inline)) inline
#elif defined(__INTEL_COMPILER) || defined(__INTEL_LLVM_COMPILER)
// Intel C++ Compilers with MSVC command line interface will not appear here rather at _MSC_VER
# define AVS_FORCEINLINE inline
# undef __forceinline
# define __forceinline inline
#else
# error Unsupported compiler.
# define AVS_FORCEINLINE inline
# undef __forceinline
# define __forceinline inline
#endif
#if defined(_WIN32) || defined(__CYGWIN__)
...
...
@@ -159,8 +142,6 @@
#elif defined(__HAIKU__)
# define AVS_HAIKU
# define AVS_POSIX
#else
# error Operating system unsupported.
#endif
#ifndef AVS_MSVC
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment