You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
669 B
33 lines
669 B
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu> |
|
# |
|
# SPDX-License-Identifier: GPL-3.0-or-later |
|
|
|
src_prepare() { |
|
default |
|
|
|
# tcc does not support complex types |
|
rm -rf src/complex |
|
} |
|
|
|
src_configure() { |
|
CC=tcc ./configure \ |
|
--host=i386 \ |
|
--disable-shared \ |
|
--prefix="${PREFIX}" \ |
|
--libdir="${PREFIX}/lib/musl" \ |
|
--includedir="${PREFIX}/include/" |
|
|
|
# configure script creates this file |
|
if test -f /dev/null; then |
|
rm /dev/null |
|
fi |
|
} |
|
|
|
src_compile() { |
|
make CROSS_COMPILE= CFLAGS="-DSYSCALL_NO_TLS" AS_CMD='as -o $@ $<' |
|
} |
|
|
|
src_install() { |
|
rm -rf "${PREFIX}/include" |
|
make install |
|
}
|
|
|