Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
X
x264
Manage
Activity
Members
Labels
Plan
Issues
27
Issue boards
Milestones
Wiki
Code
Merge requests
20
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
Merge requests
!105
Fix build on MIPS with AviSynth+ support
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix build on MIPS with AviSynth+ support
BugMaster/x264:fix_build_mips
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Anton Mitrofanov
requested to merge
BugMaster/x264:fix_build_mips
into
master
3 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
95634be6
1 commit,
3 years ago
1 file
+
1
−
20
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
extras/avisynth_c.h
+
1
−
20
Options
@@ -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
Loading