mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
It's now possible to compile Emacs using cosmocc. However we need to troubleshoot why it's event loop isn't working correctly at runtime.
98 lines
2.8 KiB
Bash
Executable file
98 lines
2.8 KiB
Bash
Executable file
#!/bin/sh
|
|
# replacement for c++ command
|
|
#
|
|
# we assume you run the following beforehand
|
|
#
|
|
# sudo chmod 1777 /opt
|
|
# cd /opt
|
|
# git clone https://github.com/jart/cosmopolitan cosmo
|
|
# cd cosmo
|
|
# make -j
|
|
#
|
|
# you can then use it to build open source projects, e.g.
|
|
#
|
|
# export CC=cosmocc
|
|
# export CXX=cosmoc++
|
|
# export LD=cosmoc++
|
|
# ./configure --prefix=/opt/cosmos
|
|
# make -j
|
|
# make install
|
|
#
|
|
|
|
if [ "$1" = "--version" ]; then
|
|
cat <<'EOF'
|
|
x86_64-unknown-cosmo-g++ (GCC) 11.2.0
|
|
Copyright (C) 2019 Free Software Foundation, Inc.
|
|
This is free software; see the source for copying conditions. There is NO
|
|
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
EOF
|
|
exit 0
|
|
fi
|
|
|
|
CXX="/opt/cosmo/o/third_party/gcc/bin/x86_64-linux-musl-g++"
|
|
CCFLAGS="-g -fdata-sections -ffunction-sections -fno-pie -pg -mnop-mcount -mno-tls-direct-seg-refs -fportcosmo -include /opt/cosmo/build/portcosmo.h"
|
|
CXXFLAGS="-fno-exceptions -fuse-cxa-atexit -fno-threadsafe-statics"
|
|
CPPFLAGS="-DNDEBUG -nostdinc -iquote /opt/cosmo -isystem /opt/cosmos/include -isystem /opt/cosmo/libc/isystem -include libc/integral/normalize.inc"
|
|
LDFLAGS="-static -no-pie -nostdlib -fuse-ld=bfd -Wl,-melf_x86_64 -Wl,--gc-sections -L/opt/cosmos/lib -Wl,-T,/opt/cosmo/o/ape/public/ape.lds /opt/cosmo/o/ape/ape-no-modify-self.o /opt/cosmo/o/libc/crt/crt.o"
|
|
LDLIBS="/opt/cosmo/o/third_party/libcxx/libcxx.a /opt/cosmo/o/cosmopolitan.a"
|
|
|
|
if [ ! -d $COSMO ]; then
|
|
echo you need to checkout cosmopolitan to your $COSMO directory >&2
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -d $COSMOS ]; then
|
|
echo you need to create your $COSMOS directory >&2
|
|
exit 1
|
|
fi
|
|
|
|
# auto-install some shell libraries
|
|
if [ ! -d $COSMOS/lib ]; then
|
|
mkdir $COSMOS/lib
|
|
for lib in c dl gcc_s m pthread resolv rt z stdc++; do
|
|
printf '\041\074\141\162\143\150\076\012' >$COSMOS/lib/lib$lib.a
|
|
done
|
|
fi
|
|
|
|
HAS_C=0
|
|
HAS_O=0
|
|
HAS_E=0
|
|
FIRST=1
|
|
for x; do
|
|
if [ $FIRST -eq 1 ]; then
|
|
set --
|
|
FIRST=0
|
|
fi
|
|
if [ "$x" = "-Werror" ]; then
|
|
# this toolchain is intended for building other people's code
|
|
# elevating warnings into errors, should only be done by devs
|
|
continue
|
|
fi
|
|
if [ "$x" = "-pedantic" ]; then
|
|
# this toolchain is intended for building other people's code
|
|
# we don't need the compiler's assistance to be more portable
|
|
continue
|
|
fi
|
|
if [ "$x" = "-c" ]; then
|
|
HAS_C=1
|
|
fi
|
|
if [ "$x" = "-E" ]; then
|
|
HAS_E=1
|
|
fi
|
|
if [ "$x" = "-o" ] || [ "${x#-o}" != "$x" ]; then
|
|
HAS_O=1
|
|
fi
|
|
set -- "$@" "$x"
|
|
done
|
|
|
|
if [ "$HAS_E" = "1" ]; then
|
|
set -- $CCFLAGS $CPPFLAGS "$@"
|
|
elif [ "$HAS_C" = "1" ]; then
|
|
set -- $CCFLAGS $CXXFLAGS $CPPFLAGS "$@" -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
|
|
else
|
|
set -- $LDFLAGS $CXXFLAGS $CPPFLAGS "$@" $LDLIBS -Wl,-z,common-page-size=65536 -Wl,-z,max-page-size=65536
|
|
fi
|
|
|
|
set -- "$CXX" "$@"
|
|
printf '(cd %s; %s)\n' "$PWD" "$*" >>/tmp/build.log
|
|
exec "$@"
|