jack1 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
664B

  1. #ifndef _jack_sysdep_cycles_h_
  2. #define _jack_sysdep_cycles_h_
  3. #if defined(__i386__)
  4. /* technically, i386 doesn't have a cycle counter, but
  5. running JACK on a real i386 seems like a ridiculuous
  6. target and gcc defines this for the entire x86 family
  7. including the [456]86 that do have the counter.
  8. */
  9. #include <config/cpu/i386/cycles.h>
  10. #elif defined(__x86_64)
  11. #include <config/cpu/i486/cycles.h>
  12. #elif defined(__powerpc__) || defined(__ppc__) /* linux and OSX gcc use different tokens */
  13. #include <config/cpu/powerpc/cycles.h>
  14. #else
  15. #include <config/cpu/generic/cycles.h>
  16. #endif /* processor selection */
  17. #endif /* _jack_sysdep_cycles_h_ */