mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
Disable MIPS, 'cuz it's broken.
Original commit message from CVS: Disable MIPS, 'cuz it's broken.
This commit is contained in:
parent
dc8008a9b9
commit
38b667a0aa
1 changed files with 3 additions and 1 deletions
|
@ -290,7 +290,9 @@ gst_atomic_int_dec_and_test (GstAtomicInt *aint)
|
|||
}
|
||||
|
||||
/***** MIPS *****/
|
||||
#elif defined(HAVE_CPU_MIPS) && defined(__GNUC__)
|
||||
/* This is disabled because the asm code is broken on most MIPS
|
||||
* processors and doesn't generally compile. */
|
||||
#elif defined(HAVE_CPU_MIPS) && defined(__GNUC__) && 0
|
||||
|
||||
GST_INLINE_FUNC void gst_atomic_int_init (GstAtomicInt *aint, gint val) { aint->counter = val; }
|
||||
GST_INLINE_FUNC void gst_atomic_int_destroy (GstAtomicInt *aint) { }
|
||||
|
|
Loading…
Reference in a new issue