update comments and todo

This commit is contained in:
Connor Olding 2022-09-23 15:39:25 -07:00
parent 91fa6430cf
commit 12f57f61f6
2 changed files with 3 additions and 2 deletions

View File

@ -27,3 +27,4 @@ remove elements from this list as you see fit.
* for exposed containers
* for `install-cosmo` (kinda a subset of the previous point)
* use cache for `apk` packages
* create a shortcut path to `/usr/local/bin` in `notwa-util`

View File

@ -72,7 +72,7 @@ COPY --from=downloader /gmp /gmp
WORKDIR /gmp
RUN : \
&& CC=cosmocc CFLAGS="-O2 -g" \
# specify some generic old CPU for best compatibility/reproduciblity: \
# specify some generic old CPU for best compatibility/reproduciblity. \
# core2 introduced SSSE3, which cosmopolitan depends on, so use that: \
ac_cv_build='core2-pc-linux-gnu' \
ac_cv_host='core2-pc-linux-gnu' \
@ -93,7 +93,7 @@ RUN : \
&& sed -i 's/\bdonothing\b/&_/g' src/context/context.c \
&& sed -i 's/\bhextoint\b/&_/g' src/terms/bv_constants.c src/terms/bv64_constants.c \
&& sed -i '/#include <unistd.h>/i\\#include <time.h>' src/utils/timeout.c \
# the static-lib target attempts to build static_libyices_dynamic. don't do that. \
# the static-lib target attempts to build a dynamic library. don't do that. \
&& sed -i 's/ $(static_libyices_dynamic)//g' src/Makefile \
\
&& autoconf \