~ubuntu-branches/ubuntu/trusty/qtscript-opensource-src/trusty

« back to all changes in this revision

Viewing changes to src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h

  • Committer: Package Import Robot
  • Author(s): Lisandro Damián Nicanor Pérez Meyer, Pino Toscano, Lisandro Damián Nicanor Pérez Meyer
  • Date: 2013-06-20 19:45:49 UTC
  • Revision ID: package-import@ubuntu.com-20130620194549-psxc6wcso6h5u31o
Tags: 5.0.2+dfsg-3
[ Pino Toscano ]
* debian/control: remove extra ${misc:Pre-Depends} from qtscript5-examples.
* Copy patch s390x_jscore.diff from qt4-x11 (which is a backport of an
  upstream commit) to support s390/s390x.

[ Lisandro Damián Nicanor Pérez Meyer ]
* Build the documentation shipped with this submodule as a build-indep task:
  - Add the necessary indep build dependencies:
    * qttools5-dev-tools to use qhelpgenerator.
    * libqt5sql5-sqlite to generate qch doc.
  - Build and create packages for qch and HTML doc formats.
* Update symbols file.
* Make qtscript5-dbg M-A same to allow debugging symbols coinstalability.

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
#define WTF_CPU_SPARC 1
190
190
#endif
191
191
 
 
192
/* CPU(S390X) - S390 64-bit */
 
193
#if defined(__s390x__)
 
194
#define WTF_CPU_S390X 1
 
195
#define WTF_CPU_BIG_ENDIAN 1
 
196
#endif
 
197
 
 
198
/* CPU(S390) - S390 32-bit */
 
199
#if defined(__s390__)
 
200
#define WTF_CPU_S390 1
 
201
#define WTF_CPU_BIG_ENDIAN 1
 
202
#endif
 
203
 
192
204
/* CPU(X86) - i386 / x86 32-bit */
193
205
#if   defined(__i386__) \
194
206
    || defined(i386)     \
873
885
#endif
874
886
 
875
887
#if !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32) && !defined(WTF_USE_JSVALUE32_64)
876
 
#if (CPU(X86_64) && (OS(UNIX) || OS(WINDOWS) || OS(SOLARIS) || OS(HPUX))) || (CPU(IA64) && !CPU(IA64_32)) || CPU(ALPHA) || CPU(AIX64) || CPU(SPARC64)
 
888
#if (CPU(X86_64) && (OS(UNIX) || OS(WINDOWS) || OS(SOLARIS) || OS(HPUX))) || (CPU(IA64) && !CPU(IA64_32)) || CPU(ALPHA) || CPU(AIX64) || CPU(SPARC64) || CPU(S390X)
877
889
#define WTF_USE_JSVALUE64 1
878
890
#elif CPU(ARM) || CPU(PPC64)
879
891
#define WTF_USE_JSVALUE32 1