Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mesa
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Panfrost
mesa
Commits
69ab4fec
Commit
69ab4fec
authored
Apr 30, 2004
by
Keith Whitwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AMD64 changes from Ronny V. Vindenes.
parent
4d46e4b2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
42 additions
and
7 deletions
+42
-7
Makefile
Makefile
+1
-0
configs/linux-dri-x86-64
configs/linux-dri-x86-64
+34
-0
configs/linux-x86-64
configs/linux-x86-64
+3
-3
configs/linux-x86-64-static
configs/linux-x86-64-static
+3
-3
src/mesa/main/imports.h
src/mesa/main/imports.h
+1
-1
No files found.
Makefile
View file @
69ab4fec
...
...
@@ -65,6 +65,7 @@ linux-alpha \
linux-alpha-static
\
linux-debug
\
linux-dri
\
linux-dri-x86-64
\
linux-glide
\
linux-icc
\
linux-icc-static
\
...
...
configs/linux-dri-x86-64
0 → 100644
View file @
69ab4fec
# -*-makefile-*-
# Configuration for linux-dri: Linux DRI hardware drivers for XFree86 & others
include
$(TOP)/configs/default
CONFIG_NAME
=
linux-dri-x86-64
# Compiler and flags
CC
=
gcc
CXX
=
g++
CFLAGS
=
-m64
-Wmissing-prototypes
-g
-std
=
c99
-Wundef
-fPIC
-ffast-math
-D_POSIX_SOURCE
-D_POSIX_C_SOURCE
=
199309L
-D_SVID_SOURCE
-D_BSD_SOURCE
-DPTHREADS
-D_GNU_SOURCE
-DGLX_DIRECT_RENDERING
-D__AMD64__
-I
/usr/X11R6/include
-I
/usr/X11R6/include/X11/extensions
CXXFLAGS
=
-m64
-Wall
-g
-ansi
-pedantic
-fPIC
-D_POSIX_SOURCE
-D_POSIX_C_SOURCE
=
199309L
-D_SVID_SOURCE
-D_BSD_SOURCE
-D__AMD64__
#ASM_SOURCES = $(X86_SOURCES)
LIB_DIR
=
$(TOP)
/lib64
# Library/program dependencies
GL_LIB_DEPS
=
-L
/usr/X11R6/lib64
-lX11
-lXext
-lm
-lpthread
-lexpat
-ldl
GLUT_LIB_DEPS
=
-L
$(LIB_DIR)
-lGLU
-lGL
-L
/usr/X11R6/lib64
-lX11
-lXmu
-lXt
-lXi
-lm
GLW_LIB_DEPS
=
-L
$(LIB_DIR)
-lGL
-L
/usr/X11R6/lib64
-lXt
-lXm
-lX11
# Directories
SRC_DIRS
=
mesa glu glut/glx glw
DRIVER_DIRS
=
dri
PROGRAM_DIRS
=
WINDOW_SYSTEM
=
dri
# ffb & savage missing:
#
DRI_DIRS
=
dri_client gamma i810 i830 mach64 mga r128 r200 radeon sis tdfx unichrome
configs/linux-x86-64
View file @
69ab4fec
...
...
@@ -8,14 +8,14 @@ CONFIG_NAME = linux-x86-64
CC = gcc
CXX = g++
CFLAGS = -m64 -Wall -O3 -ansi -pedantic -fPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -D
USE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM -DPTHREADS
-I/usr/X11R6/include
CFLAGS = -m64 -Wall -O3 -ansi -pedantic -fPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -D
PTHREADS -D__AMD64__
-I/usr/X11R6/include
CXXFLAGS = -m64 -Wall -O3 -ansi -pedantic -fPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
CXXFLAGS = -m64 -Wall -O3 -ansi -pedantic -fPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
-D__AMD64__
GLUT_CFLAGS = -fexceptions
ASM_SOURCES = $(X86_SOURCES)
#
ASM_SOURCES = $(X86_SOURCES)
LIB_DIR = $(TOP)/lib64
...
...
configs/linux-x86-64-static
View file @
69ab4fec
...
...
@@ -8,9 +8,9 @@ CONFIG_NAME = linux-x86-64-static
CC = gcc
CXX = g++
CFLAGS = -m64 -Wall -O3 -ansi -pedantic -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -D
USE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM -DPTHREADS
-I/usr/X11R6/include
CFLAGS = -m64 -Wall -O3 -ansi -pedantic -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -D
PTHREADS -D__AMD64__
-I/usr/X11R6/include
CXXFLAGS = -m64 -Wall -O3 -ansi -pedantic -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
CXXFLAGS = -m64 -Wall -O3 -ansi -pedantic -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
-D__AMD64__
GLUT_CFLAGS = -fexceptions
...
...
@@ -25,7 +25,7 @@ GLW_LIB_NAME = libGLw.a
OSMESA_LIB_NAME = libOSMesa.a
ASM_SOURCES = $(X86_SOURCES)
#
ASM_SOURCES = $(X86_SOURCES)
LIB_DIR = $(TOP)/lib64
...
...
src/mesa/main/imports.h
View file @
69ab4fec
...
...
@@ -224,7 +224,7 @@ extern void _ext_mesa_free_pixelbuffer( void *pb );
***/
#if defined(__i386__) || defined(__386__) || defined(__sparc__) || \
defined(__s390x__) || defined(__powerpc__) || \
defined(__AMD64__) ||
defined(__amd64__) ||
\
defined(__AMD64__) || \
defined(ia64) || defined(__ia64__) || \
(defined(__alpha__) && (defined(__IEEE_FLOAT) || !defined(VMS)))
#define USE_IEEE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment