~ubuntu-branches/ubuntu/trusty/python3.4/trusty-proposed

« back to all changes in this revision

Viewing changes to Modules/_ctypes/libffi_osx/include/ffitarget.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-11-25 09:44:27 UTC
  • Revision ID: package-import@ubuntu.com-20131125094427-lzxj8ap5w01lmo7f
Tags: upstream-3.4~b1
ImportĀ upstreamĀ versionĀ 3.4~b1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*      Dispatch to the right ffitarget file. This file is PyObjC specific; in a
 
2
        normal build, the build environment copies the file to the right location or
 
3
        sets up the right include flags. We want to do neither because that would
 
4
        make building fat binaries harder.
 
5
*/
 
6
 
 
7
#if defined(__i386__) || defined(__x86_64__)
 
8
#include "x86-ffitarget.h"
 
9
#elif defined(__ppc__) || defined(__ppc64__)
 
10
#include "ppc-ffitarget.h"
 
11
#else
 
12
#error "Unsupported CPU type"
 
13
#endif
 
 
b'\\ No newline at end of file'