~ubuntu-branches/ubuntu/quantal/mesa-glw/quantal

« back to all changes in this revision

Viewing changes to configs/aix-gcc

  • Committer: Bazaar Package Importer
  • Author(s): Morten Kjeldgaard
  • Date: 2008-05-06 16:19:15 UTC
  • Revision ID: james.westby@ubuntu.com-20080506161915-uynz7nftmfixu6bq
Tags: upstream-7.0.3
ImportĀ upstreamĀ versionĀ 7.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Configuration for AIX with gcc
 
2
 
 
3
include $(TOP)/configs/default
 
4
 
 
5
CONFIG_NAME = aix-gcc
 
6
 
 
7
# Compiler and flags
 
8
CC = gcc
 
9
CXX = g++
 
10
 
 
11
CFLAGS = -O2 -DAIXV3
 
12
CXXFLAGS = -O2 -DAIXV3
 
13
 
 
14
# Work around aliasing bugs - developers should comment this out
 
15
CFLAGS += -fno-strict-aliasing
 
16
CXXFLAGS += -fno-strict-aliasing
 
17
 
 
18
MKLIB_OPTIONS = -arch aix-gcc
 
19
GL_LIB_DEPS = -lX11 -lXext -lm
 
20
GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm
 
21
GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -lXi -lXmu
 
22
APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -Wl,-brtl -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm -lX11 -lXext -lXmu -lXi
 
23