From owner-svn-ports-head@freebsd.org Fri Dec 15 15:31:09 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF2D9E845D0; Fri, 15 Dec 2017 15:31:09 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A17DC7A074; Fri, 15 Dec 2017 15:31:09 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBFFV8mb045133; Fri, 15 Dec 2017 15:31:08 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBFFV86t045131; Fri, 15 Dec 2017 15:31:08 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201712151531.vBFFV86t045131@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Fri, 15 Dec 2017 15:31:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456402 - in head/lang/ocaml: . files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/lang/ocaml: . files X-SVN-Commit-Revision: 456402 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Dec 2017 15:31:09 -0000 Author: danfe Date: Fri Dec 15 15:31:08 2017 New Revision: 456402 URL: https://svnweb.freebsd.org/changeset/ports/456402 Log: First step to unbreak `lang/ocaml' on aarch64: teach configure script that the architecture exists on FreeBSD. Unfortunately, this is not enough for build to succeed, it now complains that as(1) is not found: ../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormatBasics.cmx` -c camlinternalFormatBasics.ml sh: as: not found File "camlinternalFormatBasics.ml", line 1: Error: Assembler error, input left in file /tmp/camlasm4329ae.s gmake[7]: *** [Makefile.shared:84: camlinternalFormatBasics.cmx] Error 2 Developed on: ref11-aarch64.freebsd.org Modified: head/lang/ocaml/Makefile head/lang/ocaml/files/patch-configure Modified: head/lang/ocaml/Makefile ============================================================================== --- head/lang/ocaml/Makefile Fri Dec 15 15:22:29 2017 (r456401) +++ head/lang/ocaml/Makefile Fri Dec 15 15:31:08 2017 (r456402) @@ -18,7 +18,7 @@ LICENSE_NAME_QPL10= Q Public License, Version 1.0 LICENSE_FILE_QPL10= ${WRKSRC}/LICENSE LICENSE_PERMS_QPL10= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BROKEN_aarch64= Does not build: No rule to make target aarch64.o, needed by libasmrun.a +BROKEN_aarch64= Does not build: sh: as: not found BROKEN_armv7= Does not build: hasgot.c: undefined reference to `tgetent' BROKEN_powerpc64= Does not build: error: too few arguments to function gethostbyname_r BROKEN_sparc64= ocamlc.opt seg-faults, please try to fix Modified: head/lang/ocaml/files/patch-configure ============================================================================== --- head/lang/ocaml/files/patch-configure Fri Dec 15 15:22:29 2017 (r456401) +++ head/lang/ocaml/files/patch-configure Fri Dec 15 15:31:08 2017 (r456402) @@ -80,7 +80,15 @@ i[3456]86-*-freebsd*) natdynlink=true;; x86_64-*-freebsd*) natdynlink=true;; i[3456]86-*-openbsd*) natdynlink=true;; -@@ -844,6 +846,7 @@ case "$target" in +@@ -804,6 +806,7 @@ if test $with_sharedlibs = "yes"; then + arm*-*-linux*) natdynlink=true;; + arm*-*-freebsd*) natdynlink=true;; + aarch64-*-linux*) natdynlink=true;; ++ aarch64-*-freebsd*) natdynlink=true;; + esac + fi + +@@ -844,6 +847,7 @@ case "$target" in i[3456]86-*-gnu*) arch=i386; system=gnu;; i[3456]86-*-mingw*) arch=i386; system=mingw;; powerpc*-*-linux*) arch=power; model=ppc; system=elf;; @@ -88,7 +96,7 @@ powerpc-*-netbsd*) arch=power; model=ppc; system=elf;; powerpc-*-openbsd*) arch=power; model=ppc; system=bsd_elf;; powerpc-*-rhapsody*) arch=power; model=ppc; system=rhapsody;; -@@ -862,6 +865,7 @@ case "$target" in +@@ -862,12 +866,14 @@ case "$target" in zaurus*-*-openbsd*) arch=arm; system=bsd;; x86_64-*-linux*) arch=amd64; system=linux;; x86_64-*-gnu*) arch=amd64; system=gnu;; @@ -96,7 +104,14 @@ x86_64-*-freebsd*) arch=amd64; system=freebsd;; x86_64-*-netbsd*) arch=amd64; system=netbsd;; x86_64-*-openbsd*) arch=amd64; system=openbsd;; -@@ -889,7 +893,7 @@ else + x86_64-*-darwin*) arch=amd64; system=macosx;; + x86_64-*-mingw*) arch=amd64; system=mingw;; + aarch64-*-linux*) arch=arm64; system=linux;; ++ aarch64-*-freebsd*) arch=arm64; system=freebsd;; + x86_64-*-cygwin*) arch=amd64; system=cygwin;; + esac + +@@ -889,7 +895,7 @@ else fi nativecccompopts='' @@ -105,7 +120,7 @@ # FIXME the naming of nativecclinkopts is broken: these are options for # ld (for shared libs), not for cc nativeccrpath="$byteccrpath" -@@ -932,6 +936,8 @@ case "$arch,$system" in +@@ -932,6 +938,8 @@ case "$arch,$system" in esac;; arm,freebsd) as="${TOOLPREF}cc -c" aspp="${TOOLPREF}cc -c";; @@ -114,7 +129,7 @@ *,freebsd) as="${TOOLPREF}as" aspp="${TOOLPREF}cc -c";; amd64,*|arm,*|arm64,*|i386,*|power,bsd*|sparc,*) -@@ -955,9 +961,11 @@ case "$arch,$system" in +@@ -955,9 +963,11 @@ case "$arch,$system" in case "$nativecc" in gcc*) ;; *) cc_profile='-xpg';; esac;; amd64,linux) profiling='prof';; amd64,openbsd) profiling='prof';; @@ -126,7 +141,7 @@ arm,linux*) profiling='prof';; power,elf) profiling='prof';; power,bsd*) profiling='prof';; -@@ -1415,6 +1423,8 @@ if test "$pthread_wanted" = "yes"; then +@@ -1415,6 +1425,8 @@ if test "$pthread_wanted" = "yes"; then case "$target" in *-*-solaris*) pthread_link="-lpthread -lposix4" pthread_caml_link="-cclib -lpthread -cclib -lposix4";; @@ -135,7 +150,7 @@ *-*-freebsd*) pthread_link="-pthread" pthread_caml_link="-cclib -pthread";; *-*-openbsd*) pthread_link="-pthread" -@@ -1431,7 +1441,7 @@ if test "$pthread_wanted" = "yes"; then +@@ -1431,7 +1443,7 @@ if test "$pthread_wanted" = "yes"; then bytecccompopts="$bytecccompopts -D_REENTRANT" nativecccompopts="$nativecccompopts -D_REENTRANT" case "$target" in @@ -144,7 +159,7 @@ bytecccompopts="$bytecccompopts -D_THREAD_SAFE" nativecccompopts="$nativecccompopts -D_THREAD_SAFE";; *-*-openbsd*) -@@ -1601,6 +1611,7 @@ if test "$x11_include" = "not found"; th +@@ -1601,6 +1613,7 @@ if test "$x11_include" = "not found"; then else x11_libs="-L$dir" case "$target" in @@ -152,7 +167,7 @@ *-kfreebsd*-gnu) x11_link="-L$dir -lX11";; *-*-*bsd*) x11_link="-R$dir -L$dir -lX11";; *) x11_link="-L$dir -lX11";; -@@ -1644,10 +1655,10 @@ echo "X11_LINK=$x11_link" >> Makefile +@@ -1644,10 +1657,10 @@ echo "X11_LINK=$x11_link" >> Makefile # Look for BFD library if sh ./hasgot -DPACKAGE=ocaml -i bfd.h && \ @@ -165,7 +180,7 @@ else wrn "BFD library not found, 'objinfo' will be unable to display info on .cmxs files." echo "LIBBFD_LINK=" >> Makefile -@@ -1686,12 +1697,6 @@ if $no_naked_pointers; then +@@ -1686,12 +1699,6 @@ if $no_naked_pointers; then echo "#define NO_NAKED_POINTERS" >> m.h fi @@ -178,7 +193,7 @@ # Final twiddling of compiler options to work around known bugs nativeccprofopts="$nativecccompopts" -@@ -1723,7 +1728,7 @@ SYSLIB=-l\$(1) +@@ -1723,7 +1730,7 @@ SYSLIB=-l\$(1) MKLIB=${TOOLPREF}ar rc \$(1) \$(2); ${TOOLPREF}ranlib \$(1) #ml let mklib out files opts = Printf.sprintf "${TOOLPREF}ar rc %s %s %s; ${TOOLPREF}ranlib %s" out opts files out;; EOF