source: branches/4.5.1/mkspecs/irix-cc/qmake.conf@ 986

Last change on this file since 986 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 3.8 KB
Line 
1#
2# qmake configuration for irix-cc
3#
4# From cc(1):
5# -n32
6# Generates a (new) 32-bit object. This defaults to -mips3 if
7# -mips4 has not been specified.
8# -LANG: ...
9# The language feature option group controls the source language
10# interpretation assumed by the compiler. The individual controls
11# in this group are as follows:
12# ansi-for-init-scope [ = ( ON|OFF ) ]
13# Enables or disables the ANSI scoping rules for for-init
14# declarations (the scope of the name declared extends to
15# the end of the for statement). This enables the behavior
16# that is required by the C++ standard. The default value
17# is OFF, which is the ARM behavior (the scope of the name
18# declared extends to the end of the block enclosing the for
19# statement).
20# bool [ = ( ON|OFF ) ]
21# Enables or disables the predefined bool data type, along
22# with the predefined values true and false. Use this option
23# only to suppress this type in old code that defines bool
24# itself. Because this option changes the mangling of function
25# names with bool parameters, all files comprising a program
26# should be compiled with consistent options.
27# Default is ON.
28# The _BOOL feature macro can be used in #ifdefs to do conditional
29# compilation based on whether or not this option is enabled.
30# std
31# Enables use of the standard C++ library and standard-
32# conforming iostream library. Specifying this flag also
33# triggers other standard-conforming behavior, such as the
34# new rules for the scope of for loop initializers.
35#
36
37MAKEFILE_GENERATOR = UNIX
38TEMPLATE = app
39CONFIG += qt warn_on release link_prl
40QT += core gui
41QMAKE_COMPILER_DEFINES += __sgi __EDG
42
43QMAKE_CC = cc
44QMAKE_LEX = flex
45QMAKE_LEXFLAGS =
46QMAKE_YACC = yacc
47QMAKE_YACCFLAGS = -d
48QMAKE_CFLAGS = -n32 -signed -woff 1209,1355,1375,1424,3303
49QMAKE_CFLAGS_DEPS = -M
50QMAKE_CFLAGS_WARN_ON = -fullwarn
51QMAKE_CFLAGS_WARN_OFF =
52QMAKE_CFLAGS_RELEASE = -O2 -OPT:Olimit=3000
53QMAKE_CFLAGS_DEBUG = -g
54QMAKE_CFLAGS_SHLIB =
55QMAKE_CFLAGS_STATIC_LIB = $$QMAKE_CFLAGS_SHLIB
56QMAKE_CFLAGS_YACC = -woff 1110,1174,3262
57QMAKE_CFLAGS_THREAD =
58
59QMAKE_CXX = CC
60QMAKE_CXXFLAGS = -n32 -signed -LANG:std:libc_in_namespace_std=ON -woff 1209,1355,1375,1424,3303
61QMAKE_CXXFLAGS_DEPS = $$QMAKE_CFLAGS_DEPS
62QMAKE_CXXFLAGS_WARN_ON = $$QMAKE_CFLAGS_WARN_ON
63QMAKE_CXXFLAGS_WARN_OFF = $$QMAKE_CFLAGS_WARN_OFF
64QMAKE_CXXFLAGS_RELEASE = $$QMAKE_CFLAGS_RELEASE
65QMAKE_CXXFLAGS_DEBUG = $$QMAKE_CFLAGS_DEBUG
66QMAKE_CXXFLAGS_SHLIB = $$QMAKE_CFLAGS_SHLIB
67QMAKE_CXXFLAGS_STATIC_LIB = $$QMAKE_CFLAGS_STATIC_LIB
68QMAKE_CXXFLAGS_YACC = $$QMAKE_CFLAGS_YACC
69QMAKE_CXXFLAGS_THREAD =
70
71QMAKE_INCDIR =
72QMAKE_LIBDIR =
73QMAKE_INCDIR_X11 =
74QMAKE_LIBDIR_X11 =
75QMAKE_INCDIR_QT = $$[QT_INSTALL_HEADERS]
76QMAKE_LIBDIR_QT = $$[QT_INSTALL_LIBS]
77QMAKE_INCDIR_OPENGL =
78QMAKE_LIBDIR_OPENGL =
79
80QMAKE_LINK = CC
81QMAKE_LINK_SHLIB = CC
82QMAKE_LFLAGS = -n32
83QMAKE_LFLAGS_RELEASE =
84QMAKE_LFLAGS_DEBUG = -g
85QMAKE_LFLAGS_SHLIB = -shared
86QMAKE_LFLAGS_PLUGIN = $$QMAKE_LFLAGS_SHLIB
87QMAKE_LFLAGS_SONAME = -Wl,-soname,
88QMAKE_LFLAGS_THREAD =
89QMAKE_LFLAGS_NOUNDEF = -Wl,-no_unresolved
90QMAKE_RPATH = -Wl,-rpath,
91
92QMAKE_LIBS =
93QMAKE_LIBS_DYNLOAD =
94QMAKE_LIBS_X11 = -lXext -lX11 -lm
95QMAKE_LIBS_X11SM = -lSM -lICE
96QMAKE_LIBS_OPENGL = -lGLU -lGL -lm
97QMAKE_LIBS_OPENGL_QT = -lGL
98QMAKE_LIBS_THREAD = -lpthread
99
100QMAKE_MOC = $$[QT_INSTALL_BINS]/moc
101QMAKE_UIC = $$[QT_INSTALL_BINS]/uic
102
103QMAKE_AR = CC -ar -o
104QMAKE_OBJCOPY = objcopy
105QMAKE_RANLIB =
106
107QMAKE_CLEAN = -r $(OBJECTS_DIR)so_locations $(OBJECTS_DIR)ii_files
108
109QMAKE_TAR = tar -cf
110QMAKE_GZIP = gzip -9f
111
112QMAKE_COPY = cp -f
113QMAKE_MOVE = mv -f
114QMAKE_DEL_FILE = rm -f
115QMAKE_DEL_DIR = rmdir
116QMAKE_CHK_DIR_EXISTS = test -d
117QMAKE_MKDIR = mkdir -p
118include(../common/unix.conf)
119load(qt_config)
Note: See TracBrowser for help on using the repository browser.