1
0
mirror of https://github.com/bebbo/amiga-gcc.git synced 2025-11-22 08:35:39 +00:00

fix: gmp lib version removed

This commit is contained in:
praingeard
2019-06-14 00:30:59 +02:00
parent 8454c1e496
commit 4a4fb4cab8

View File

@ -389,8 +389,8 @@ CONFIG_GCC = --prefix=$(PREFIX) --target=m68k-amigaos --enable-languages=c,c++,o
--with-stage1-ldflags="-dynamic-libgcc -dynamic-libstdc++" --with-boot-ldflags="-dynamic-libgcc -dynamic-libstdc++"
# OSX : libs added by the command brew install gmp mpfr libmpc
ifeq ($(findstring Darwin,$(shell uname)),)
CONFIG_GCC = ${CONFIG_GCC} --with-gmp="/usr/local/Cellar/gmp/6.1.2_2" --with-mpfr="/usr/local/Cellar/mpfr/4.0.2" --with-mpc="/usr/local/Cellar/libmpc/1.1.0"
ifeq (Darwin, $(findstring Darwin, $(UNAME_S)))
CONFIG_GCC += --with-gmp-include=/usr/local/include --with-gmp-lib=/usr/local/lib --with-mpfr-include=/usr/local/include --with-mpfr-lib=/usr/local/lib --with-mpfr-include=/usr/local/include --with-mpfr-lib=/usr/local/lib
endif