diff options
Diffstat (limited to 'tqtinterface/qt4/mkspecs/irix-cc')
-rw-r--r-- | tqtinterface/qt4/mkspecs/irix-cc/qmake.conf | 114 | ||||
-rw-r--r-- | tqtinterface/qt4/mkspecs/irix-cc/qplatformdefs.h | 92 |
2 files changed, 206 insertions, 0 deletions
diff --git a/tqtinterface/qt4/mkspecs/irix-cc/qmake.conf b/tqtinterface/qt4/mkspecs/irix-cc/qmake.conf new file mode 100644 index 0000000..a85bc56 --- /dev/null +++ b/tqtinterface/qt4/mkspecs/irix-cc/qmake.conf @@ -0,0 +1,114 @@ +# +# +# qmake configuration for irix-cc +# +# From cc(1): +# -n32 +# Generates a (new) 32-bit object. This defaults to -mips3 if +# -mips4 has not been specified. +# -LANG: ... +# The language feature option group controls the source language +# interpretation assumed by the compiler. The individual controls +# in this group are as follows: +# ansi-for-init-scope [ = ( ON|OFF ) ] +# Enables or disables the ANSI scoping rules for for-init +# declarations (the scope of the name declared extends to +# the end of the for statement). This enables the behavior +# that is required by the C++ standard. The default value +# is OFF, which is the ARM behavior (the scope of the name +# declared extends to the end of the block enclosing the for +# statement). +# bool [ = ( ON|OFF ) ] +# Enables or disables the predefined bool data type, along +# with the predefined values true and false. Use this option +# only to suppress this type in old code that defines bool +# itself. Because this option changes the mangling of function +# names with bool parameters, all files comprising a program +# should be compiled with consistent options. +# Default is ON. +# The _BOOL feature macro can be used in #ifdefs to do conditional +# compilation based on whether or not this option is enabled. +# std +# Enables use of the standard C++ library and standard- +# conforming iostream library. Specifying this flag also +# triggers other standard-conforming behavior, such as the +# new rules for the scope of for loop initializers. +# + +MAKEFILE_GENERATOR = UNIX +TEMPLATE = app +CONFIG += qt warn_on release link_prl + +TQMAKE_CC = cc +TQMAKE_LEX = flex +TQMAKE_LEXFLAGS = +TQMAKE_YACC = yacc +TQMAKE_YACCFLAGS = -d +TQMAKE_CFLAGS = -n32 -signed -woff 1021,1209,1233,1314,1355,1375,1506 +TQMAKE_CFLAGS_DEPS = -M +TQMAKE_CFLAGS_WARN_ON = -fullwarn +TQMAKE_CFLAGS_WARN_OFF = +TQMAKE_CFLAGS_RELEASE = -O2 -OPT:Olimit=3000 +TQMAKE_CFLAGS_DEBUG = -g +TQMAKE_CFLAGS_SHLIB = +TQMAKE_CFLAGS_YACC = -woff 1110,1174,3262 +TQMAKE_CFLAGS_THREAD = + +TQMAKE_CXX = CC +TQMAKE_CXXFLAGS = -n32 -signed -woff 1021,1209,1233,1314,1355,1375,1424,1506,1681,1682,3496 +TQMAKE_CXXFLAGS_DEPS = $$TQMAKE_CFLAGS_DEPS +TQMAKE_CXXFLAGS_WARN_ON = $$TQMAKE_CFLAGS_WARN_ON +TQMAKE_CXXFLAGS_WARN_OFF = $$TQMAKE_CFLAGS_WARN_OFF +TQMAKE_CXXFLAGS_RELEASE = $$TQMAKE_CFLAGS_RELEASE +TQMAKE_CXXFLAGS_DEBUG = $$TQMAKE_CFLAGS_DEBUG +TQMAKE_CXXFLAGS_SHLIB = $$TQMAKE_CFLAGS_SHLIB +TQMAKE_CXXFLAGS_YACC = $$TQMAKE_CFLAGS_YACC +TQMAKE_CXXFLAGS_THREAD = + +TQMAKE_INCDIR = +TQMAKE_LIBDIR = +TQMAKE_INCDIR_X11 = +TQMAKE_LIBDIR_X11 = +TQMAKE_INCDIR_QT = $(TQTDIR)/include +TQMAKE_LIBDIR_QT = $(TQTDIR)/lib +TQMAKE_INCDIR_OPENGL = +TQMAKE_LIBDIR_OPENGL = + +TQMAKE_LINK = CC +TQMAKE_LINK_SHLIB = CC +TQMAKE_LFLAGS = -n32 +TQMAKE_LFLAGS_RELEASE = +TQMAKE_LFLAGS_DEBUG = +TQMAKE_LFLAGS_SHLIB = -shared +TQMAKE_LFLAGS_PLUGIN = $$TQMAKE_LFLAGS_SHLIB +TQMAKE_LFLAGS_SONAME = -Wl,-soname, +TQMAKE_LFLAGS_THREAD = +TQMAKE_RPATH = -Wl,-rpath, + +TQMAKE_LIBS = +TQMAKE_LIBS_DYNLOAD = +TQMAKE_LIBS_X11 = -lXext -lX11 -lm +TQMAKE_LIBS_X11SM = -lSM -lICE +TQMAKE_LIBS_QT = -lqt +TQMAKE_LIBS_TQT_THREAD = -lqt-mt +TQMAKE_LIBS_OPENGL = -lGLU -lGL -lXmu -lm +TQMAKE_LIBS_OPENGL_QT = -lGL -lXmu +TQMAKE_LIBS_THREAD = -lpthread + +TQMAKE_TQMOC = $(TQTDIR)/bin/tqmoc +TQMAKE_UIC = $(TQTDIR)/bin/uic + +TQMAKE_AR = CC -ar -o +TQMAKE_RANLIB = + +TQMAKE_CLEAN = -r $(OBJECTS_DIR)so_locations $(OBJECTS_DIR)ii_files + +TQMAKE_TAR = tar -cf +TQMAKE_GZIP = gzip -9f + +TQMAKE_COPY = cp -f +TQMAKE_MOVE = mv -f +TQMAKE_DEL_FILE = rm -f +TQMAKE_DEL_DIR = rmdir +TQMAKE_CHK_DIR_EXISTS = test -d +TQMAKE_MKDIR = mkdir -p diff --git a/tqtinterface/qt4/mkspecs/irix-cc/qplatformdefs.h b/tqtinterface/qt4/mkspecs/irix-cc/qplatformdefs.h new file mode 100644 index 0000000..da6960c --- /dev/null +++ b/tqtinterface/qt4/mkspecs/irix-cc/qplatformdefs.h @@ -0,0 +1,92 @@ +#ifndef TQPLATFORMDEFS_H +#define TQPLATFORMDEFS_H + +// Get TQt defines/settings + +#include "tqglobal.h" + +// Set any POSIX/XOPEN defines at the top of this file to turn on specific APIs + +#include <unistd.h> + + +// We are hot - unistd.h should have turned on the specific APIs we requested + + +#ifdef TQT_THREAD_SUPPORT +#include <pthread.h> +#endif + +#include <dirent.h> +#include <fcntl.h> +#include <grp.h> +#include <pwd.h> +#include <signal.h> +#include <dlfcn.h> + +#include <sys/types.h> +#include <sys/ioctl.h> +#include <sys/ipc.h> +#include <sys/time.h> +#include <sys/shm.h> +#include <sys/socket.h> +#include <sys/stat.h> +#include <sys/wait.h> + +// DNS header files are not fully covered by X/Open specifications. +// In particular nothing is said about res_* :/ +// On IRIX header files <netinet/in.h> and <arpa/nameser.h> are not +// included by <resolv.h>. Note that <arpa/nameser.h> must be included +// before <resolv.h>. +#include <netinet/in.h> +#include <arpa/nameser.h> +#include <resolv.h> + + +#if !defined(TQT_NO_COMPAT) +#define TQT_STATBUF struct stat +#define TQT_STATBUF4TSTAT struct stat +#define TQT_STAT ::stat +#define TQT_FSTAT ::fstat +#define TQT_STAT_REG S_IFREG +#define TQT_STAT_DIR S_IFDIR +#define TQT_STAT_MASK S_IFMT +#define TQT_STAT_LNK S_IFLNK +#define TQT_FILENO fileno +#define TQT_OPEN ::open +#define TQT_CLOSE ::close +#define TQT_LSEEK ::lseek +#define TQT_READ ::read +#define TQT_WRITE ::write +#define TQT_ACCESS ::access +#define TQT_GETCWD ::getcwd +#define TQT_CHDIR ::chdir +#define TQT_MKDIR ::mkdir +#define TQT_RMDIR ::rmdir +#define TQT_OPEN_RDONLY O_RDONLY +#define TQT_OPEN_WRONLY O_WRONLY +#define TQT_OPEN_RDWR O_RDWR +#define TQT_OPEN_CREAT O_CREAT +#define TQT_OPEN_TRUNC O_TRUNC +#define TQT_OPEN_APPEND O_APPEND +#endif + +#define TQT_SIGNAL_RETTYPE void +#define TQT_SIGNAL_ARGS int +#define TQT_SIGNAL_IGNORE SIG_IGN + +#if defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE-0 >= 500) +#define TQT_SOCKLEN_T size_t +#else +#define TQT_SOCKLEN_T int +#endif + +#if 0 +// on Irix 6.5 and better only - but how to check for it? +#if defined(_SGIAPI) +#define TQT_SNPRINTF ::snprintf +#define TQT_VSNPRINTF ::vsnprintf +#endif +#endif + +#endif // TQPLATFORMDEFS_H |