Hello
first things first : I AM NOT a developer
I downloaded some sources for linux and the given makefile is as
follows :
#
# Compiler definitions and flags
CC = egcs
C++ = egcs
LINK = egcs
AR = ar
DEFINES = -D__linux__ -D__PTHREADS__=1 -DQTFILE_MEMORY_DEBUGGING=0
CCFLAGS = -g -ansi -Wall
C++FLAGS = $(CCFLAGS)
(etcetera)
I want to compile this under Solaris/x86 with gcc 2.8.1, I don't have
egcs. Can anyone tell me how the CCFLAGS and the DEFINES should be
changed ? Any helpful comment greatly appreciated.
enkidu