summaryrefslogtreecommitdiff
path: root/lib/mesa/Makefile.bsd-wrapper
blob: 75ff25167e5d84b6d105516f69cf0437c7cbb635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# $OpenBSD: Makefile.bsd-wrapper,v 1.6 2016/05/29 10:40:19 jsg Exp $

.include <bsd.own.mk>

SHARED_LIBS=	EGL 1.0 gbm 0.0 glapi 0.2 GL 17.0 GLESv1_CM 1.0 GLESv2 1.1 \
		OSMesa 10.0

DRI_DRIVERS=		swrast
GALLIUM_DRIVERS=	swrast

.if ${MACHINE} == i386 || ${MACHINE} == amd64
DRI_DRIVERS=swrast,radeon,r200,i915,i965
GALLIUM_DRIVERS=swrast,r300,r600
.endif

.if ${MACHINE} == macppc || ${MACHINE} == sparc64
DRI_DRIVERS=swrast,radeon,r200
GALLIUM_DRIVERS=swrast,r300,r600
.endif

CONFIGURE_ARGS=		--with-dri-drivers=${DRI_DRIVERS} \
			--with-gallium-drivers=${GALLIUM_DRIVERS} \
			--disable-silent-rules \
			--disable-gallium-llvm \
			--disable-llvm-shared-libs \
			--enable-gles1 --enable-gles2 \
			--enable-shared-glapi \
			--enable-osmesa \
			--enable-gbm \
			--enable-texture-float \
			--with-egl-platforms="x11,drm" \
			--prefix=${X11BASE} \
			--with-dri-driverdir=${X11BASE}/lib/modules/dri \
			--with-dri-searchpath=${X11BASE}/lib/modules/dri

# The i965 driver uses the cmpxchg8b instruction
.if ${MACHINE} == i386
CONFIGURE_ARGS+=	USER_CFLAGS="-march=i586" USER_CXXFLAGS="-march=i586"
.endif

.if ${MACHINE} == alpha
# -O2 causes gcc ICE on  main/format_pack.c and program/prog_execute.c
O1= -fdefer-pop  -fguess-branch-probability -fcprop-registers \
	-fif-conversion -fif-conversion2 -ftree-ccp -ftree-dce \
	-ftree-dominator-opts -ftree-dse -ftree-ter -ftree-lrs -ftree-sra \
	-ftree-copyrename -ftree-fre -ftree-ch -funit-at-a-time \
	-fmerge-constants -fomit-frame-pointer

O2= ${O1} -fthread-jumps -fcrossjumping -foptimize-sibling-calls \
	-fcse-follow-jumps -fcse-skip-blocks -fgcse -fgcse-lm \
	-fexpensive-optimizations -frerun-cse-after-loop \
	-fcaller-saves -fpeephole2 -fschedule-insns -fschedule-insns2 \
	-fsched-interblock  -fsched-spec -fregmove \
	-fdelete-null-pointer-checks -freorder-blocks \
	-freorder-functions -falign-functions -falign-jumps -falign-loops \
	-falign-labels -ftree-pre

CONFIGURE_ARGS+=       USER_CFLAGS="-O0 ${O2}"
.endif

depend:
.if !exists(${.OBJDIR}/src/util/format_srgb.c)
	lndir -s -e obj -e obj.${MACHINE_ARCH} -e Makefile.bsd-wrapper ${.CURDIR}
.endif

.include <bsd.xorg.mk>