blob: f37a16f49079aa779ddc5518b6cf3b00b5596ece (
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
|
# $NetBSD: Makefile,v 1.19 2012/06/12 21:11:26 jdf Exp $
#
DISTVERSION= 1.0.0.0
DISTFILES= # none
PKGREVISION= 3
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.NetBSD.org/
COMMENT= Cross-compile environment for Cygwin32/i386
NOT_FOR_PLATFORM= *-*-x86_64
WRKSRC= ${WRKDIR}/${EGCS_DISTNAME}
USE_CROSS_BINUTILS= yes
BINUTILS_GNUTARGET= pe-i386
BINUTILS_LDEMULATION= i386pe
USE_CROSS_EGCS= yes
EGCS_FAKE_RUNTIME= yes
TARGET_ARCH= i386-cygwin32
BINUTILS_EXTRAS= dlltool windres
## XXX
## These headers are required to build libgcc.
## We have to use the Cygwin versions of the headers, but for now
## these are enough.
## Actually we have to install Cygwin headers and libraries with this package;
## the header files from NetBSD should be deleted at that time.
post-configure:
${CP} ${FILESDIR}/i386_limits.h ${CROSS_SYS_INCLUDE}/machine/limits.h
${CP} ${FILESDIR}/syslimits.h ${CROSS_SYS_INCLUDE}/sys/
${CP} ${FILESDIR}/featuretest.h ${CROSS_SYS_INCLUDE}/sys/
${CP} ${FILESDIR}/limits.h ${CROSS_SYS_INCLUDE}/
.include "../../cross/COMMON/cross.mk"
|