Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date: Sun, 29 Sep 2013 08:24:27 -0500
From: Richard Pennington <rich@...nware.com>
To: musl@...ts.openwall.com
Subject: ELLCC updated to musl 0.9.14

Hi,

I've updated the musl version of the clang/LLVM based ELLCC compiler 
suite to use musl release 0.9.14.
As usual the musl guys have been doing a great job. The new release 
looks great!

http://ellcc.org

I dis have to make a few small changes to the configure script. The main 
one was that the warning the clang gives if a warning option is not 
supported is a warning, not an error. I added -Werror to tryflag. Other 
than that I just loosened up the target names a bit.

-- /home/rich/configure        2013-09-28 09:40:01.387766267 -0500
+++ configure   2013-09-28 09:52:55.758633462 -0500
@@ -79,7 +79,7 @@
  tryflag () {
  printf "checking whether compiler accepts %s... " "$2"
  echo "typedef int x;" > "$tmpc"
-if $CC "$2" -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
+if $CC -Werror "$2" -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
  printf "yes\n"
  eval "$1=\"\${$1} \$2\""
  eval "$1=\${$1# }"
@@ -225,9 +225,10 @@
  arm*) ARCH=arm ;;
  i?86*) ARCH=i386 ;;
  x86_64*) ARCH=x86_64 ;;
-mips-*|mipsel-*) ARCH=mips ;;
-microblaze-*) ARCH=microblaze ;;
+mips*|mipsel*) ARCH=mips ;;
+microblaze*) ARCH=microblaze ;;
  powerpc-*) ARCH=powerpc ;;
+ppc*) ARCH=powerpc ;;
  unknown) fail "$0: unable to detect target arch; try $0 --target=..." ;;
  *) fail "$0: unknown or unsupported target \"$target\"" ;;
  esac

-Rich

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.