diff options
author | David Goldblatt <davidgoldblatt@fb.com> | 2021-02-25 18:17:44 (GMT) |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2021-03-19 20:42:30 (GMT) |
commit | 9193ea2248e6265d2e649e60e246491d414d254a (patch) | |
tree | 694cd71d94a71560613feb35512e43926d8a7e9d | |
parent | 3913077146350bd1b720a757e33e8aa35a34e58b (diff) | |
download | jemalloc-9193ea2248e6265d2e649e60e246491d414d254a.zip jemalloc-9193ea2248e6265d2e649e60e246491d414d254a.tar.gz jemalloc-9193ea2248e6265d2e649e60e246491d414d254a.tar.bz2 |
Cirrus: fix build.
Remaining on 12.1 has started to break with an m4 error. Upgrading fixes
things.
Mangle public symbols to work around a public definition error.
-rw-r--r-- | .cirrus.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index d01954f..30fe830 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -5,7 +5,7 @@ env: task: freebsd_instance: matrix: - image: freebsd-12-1-release-amd64 + image: freebsd-12-2-release-amd64 install_script: - sed -i.bak -e 's,pkg+http://pkg.FreeBSD.org/\${ABI}/quarterly,pkg+http://pkg.FreeBSD.org/\${ABI}/latest,' /etc/pkg/FreeBSD.conf - pkg upgrade -y @@ -13,7 +13,10 @@ task: script: - autoconf #- ./configure ${COMPILER_FLAGS:+ CC="$CC $COMPILER_FLAGS" CXX="$CXX $COMPILER_FLAGS" } $CONFIGURE_FLAGS - - ./configure + # We don't perfectly track freebsd stdlib.h definitions. This is fine when + # we count as a system header, but breaks otherwise, like during these + # tests. + - ./configure --with-jemalloc-prefix=ci_ - export JFLAG=`sysctl -n kern.smp.cpus` - gmake -j${JFLAG} - gmake -j${JFLAG} tests |