Skip to content

Commit

Permalink
Update to a recent snapshot. Among others, this fixes an issue with
Browse files Browse the repository at this point in the history
the generation of code that fed up recent versions of gas.  The
pseudo-symbol _PC_ is now completely eliminated from the generated
code, and replaced by the location counter `.'.
  • Loading branch information
Joerg Wunsch authored and Joerg Wunsch committed Oct 6, 2002
1 parent 82505ef commit 0c7b82a
Showing 10 changed files with 30 additions and 112 deletions.
8 changes: 4 additions & 4 deletions devel/avr-gcc-3/Makefile
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
#

PORTNAME= gcc
PORTVERSION= 3.3.2002.09.01
PORTVERSION= 3.3.2002.10.01
CATEGORIES= devel
#MASTER_SITES= ${MASTER_SITE_GNU}
#MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}-${PORTVERSION}
@@ -19,8 +19,6 @@ EXTRACT_ONLY= gcc-core+g++-${PORTVERSION}${EXTRACT_SUFX}

MAINTAINER= joerg@freebsd.org

BROKEN= "pkg-plist is incorrect"

BUILD_DEPENDS= avr-as:${PORTSDIR}/devel/avr-binutils \
avr-ld:${PORTSDIR}/devel/avr-binutils \
autoheader:${PORTSDIR}/devel/autoconf \
@@ -39,9 +37,11 @@ GNU_CONFIGURE= yes

CONFIGURE_ARGS= --target=avr

MAN_AUX= gcc-man.2002.09.01.gz
MAN_AUX= gcc-man.2002.10.01.gz

MAKE_FLAGS= LANGUAGES="c c++"
# get rid of that silly -mcpu=pentiumpro -current is so fond of. :-(
MAKE_ENV= MACHINE_ARCH=avr

MAN1= cpp.1 avr-gcc.1 avr-g++.1 gcov.1
MAN7= fsf-funding.7 gfdl.7 gpl.7
4 changes: 2 additions & 2 deletions devel/avr-gcc-3/distinfo
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
MD5 (gcc-core+g++-3.3.2002.09.01.tar.bz2) = 6424c3b48736fc0c126374bc44cbbe57
MD5 (gcc-man.2002.09.01.gz) = 6712fd9a90730fda4d4ae483037731e0
MD5 (gcc-core+g++-3.3.2002.10.01.tar.bz2) = 6ccdbd6133a4884d07ba9a86f6ec7ffb
MD5 (gcc-man.2002.10.01.gz) = 5840b17b749722425acc3f371b9688d9
27 changes: 9 additions & 18 deletions devel/avr-gcc-3/files/patch-ab
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
--- Makefile.in.orig Mon Aug 12 15:13:39 2002
+++ Makefile.in Mon Aug 12 15:31:13 2002
@@ -186,7 +186,7 @@

# This is set by the configure script to the list of directories which
# should be built using the target tools.
-TARGET_CONFIGDIRS = libiberty libgloss $(SPECIAL_LIBS) newlib winsup opcodes libf2c libobjc
+TARGET_CONFIGDIRS = libgloss $(SPECIAL_LIBS) newlib winsup opcodes

# Target libraries are put under this directory:
# Changed by configure to $(target_alias) if cross.
@@ -755,74 +755,19 @@
--- Makefile.in.orig Tue Oct 1 21:56:45 2002
+++ Makefile.in Wed Oct 2 13:19:05 2002
@@ -753,74 +753,19 @@

# This is a list of the targets for all of the modules which are compiled
# using $(TARGET_FLAGS_TO_PASS).
@@ -28,7 +19,7 @@
- all-target-libjava \
- all-target-zlib \
- all-target-boehm-gc \
- all-target-qthreads
- all-target-qthreads
+ALL_TARGET_MODULES =

# This is a list of the configure targets for all of the modules which
@@ -48,7 +39,7 @@
- configure-target-libjava \
- configure-target-zlib \
- configure-target-boehm-gc \
- configure-target-qthreads
- configure-target-qthreads
+CONFIGURE_TARGET_MODULES =

# This is a list of the check targets for all of the modules which are
@@ -60,12 +51,12 @@
- check-target-libobjc \
- check-target-winsup \
- check-target-libiberty \
- check-target-gperf \
- check-target-libffi \
- check-target-libjava \
- check-target-zlib \
- check-target-boehm-gc \
- check-target-qthreads \
- check-target-gperf
- check-target-qthreads
+CHECK_TARGET_MODULES =

# This is a list of the install targets for all of the modules which are
@@ -79,11 +70,11 @@
- install-target-winsup \
- install-target-libgloss \
- install-target-libiberty \
- install-target-gperf \
- install-target-libjava \
- install-target-zlib \
- install-target-boehm-gc \
- install-target-qthreads \
- install-target-gperf
- install-target-qthreads
+INSTALL_TARGET_MODULES =

# This is a list of the targets for which we can do a clean-{target}.
12 changes: 0 additions & 12 deletions devel/avr-gcc-3/files/patch-ad

This file was deleted.

20 changes: 0 additions & 20 deletions devel/avr-gcc-3/files/patch-no-c++-excepts

This file was deleted.

8 changes: 4 additions & 4 deletions devel/avr-gcc/Makefile
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
#

PORTNAME= gcc
PORTVERSION= 3.3.2002.09.01
PORTVERSION= 3.3.2002.10.01
CATEGORIES= devel
#MASTER_SITES= ${MASTER_SITE_GNU}
#MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}-${PORTVERSION}
@@ -19,8 +19,6 @@ EXTRACT_ONLY= gcc-core+g++-${PORTVERSION}${EXTRACT_SUFX}

MAINTAINER= joerg@freebsd.org

BROKEN= "pkg-plist is incorrect"

BUILD_DEPENDS= avr-as:${PORTSDIR}/devel/avr-binutils \
avr-ld:${PORTSDIR}/devel/avr-binutils \
autoheader:${PORTSDIR}/devel/autoconf \
@@ -39,9 +37,11 @@ GNU_CONFIGURE= yes

CONFIGURE_ARGS= --target=avr

MAN_AUX= gcc-man.2002.09.01.gz
MAN_AUX= gcc-man.2002.10.01.gz

MAKE_FLAGS= LANGUAGES="c c++"
# get rid of that silly -mcpu=pentiumpro -current is so fond of. :-(
MAKE_ENV= MACHINE_ARCH=avr

MAN1= cpp.1 avr-gcc.1 avr-g++.1 gcov.1
MAN7= fsf-funding.7 gfdl.7 gpl.7
4 changes: 2 additions & 2 deletions devel/avr-gcc/distinfo
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
MD5 (gcc-core+g++-3.3.2002.09.01.tar.bz2) = 6424c3b48736fc0c126374bc44cbbe57
MD5 (gcc-man.2002.09.01.gz) = 6712fd9a90730fda4d4ae483037731e0
MD5 (gcc-core+g++-3.3.2002.10.01.tar.bz2) = 6ccdbd6133a4884d07ba9a86f6ec7ffb
MD5 (gcc-man.2002.10.01.gz) = 5840b17b749722425acc3f371b9688d9
27 changes: 9 additions & 18 deletions devel/avr-gcc/files/patch-ab
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
--- Makefile.in.orig Mon Aug 12 15:13:39 2002
+++ Makefile.in Mon Aug 12 15:31:13 2002
@@ -186,7 +186,7 @@

# This is set by the configure script to the list of directories which
# should be built using the target tools.
-TARGET_CONFIGDIRS = libiberty libgloss $(SPECIAL_LIBS) newlib winsup opcodes libf2c libobjc
+TARGET_CONFIGDIRS = libgloss $(SPECIAL_LIBS) newlib winsup opcodes

# Target libraries are put under this directory:
# Changed by configure to $(target_alias) if cross.
@@ -755,74 +755,19 @@
--- Makefile.in.orig Tue Oct 1 21:56:45 2002
+++ Makefile.in Wed Oct 2 13:19:05 2002
@@ -753,74 +753,19 @@

# This is a list of the targets for all of the modules which are compiled
# using $(TARGET_FLAGS_TO_PASS).
@@ -28,7 +19,7 @@
- all-target-libjava \
- all-target-zlib \
- all-target-boehm-gc \
- all-target-qthreads
- all-target-qthreads
+ALL_TARGET_MODULES =

# This is a list of the configure targets for all of the modules which
@@ -48,7 +39,7 @@
- configure-target-libjava \
- configure-target-zlib \
- configure-target-boehm-gc \
- configure-target-qthreads
- configure-target-qthreads
+CONFIGURE_TARGET_MODULES =

# This is a list of the check targets for all of the modules which are
@@ -60,12 +51,12 @@
- check-target-libobjc \
- check-target-winsup \
- check-target-libiberty \
- check-target-gperf \
- check-target-libffi \
- check-target-libjava \
- check-target-zlib \
- check-target-boehm-gc \
- check-target-qthreads \
- check-target-gperf
- check-target-qthreads
+CHECK_TARGET_MODULES =

# This is a list of the install targets for all of the modules which are
@@ -79,11 +70,11 @@
- install-target-winsup \
- install-target-libgloss \
- install-target-libiberty \
- install-target-gperf \
- install-target-libjava \
- install-target-zlib \
- install-target-boehm-gc \
- install-target-qthreads \
- install-target-gperf
- install-target-qthreads
+INSTALL_TARGET_MODULES =

# This is a list of the targets for which we can do a clean-{target}.
12 changes: 0 additions & 12 deletions devel/avr-gcc/files/patch-ad

This file was deleted.

20 changes: 0 additions & 20 deletions devel/avr-gcc/files/patch-no-c++-excepts

This file was deleted.

0 comments on commit 0c7b82a

Please sign in to comment.