1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-18 17:17:38 +00:00

Fixed makefile for building tx-0 (with display support) on OSX - from Stephen Hoffmann

This commit is contained in:
Mark Pizzolato 2013-01-24 17:26:41 -08:00
parent bf7375354c
commit 123a398f75

View File

@ -106,6 +106,10 @@ ifeq ($(WIN32),) #*nix Environments (&& cygwin)
LIBPATH += /opt/local/lib
OS_LDFLAGS += -L/opt/local/lib
endif
ifeq (libXt,$(shell if $(TEST) -d /usr/X11/lib; then echo libXt; fi))
LIBPATH += /usr/X11/lib
OS_LDFLAGS += -L/usr/X11/lib
endif
# OSX's XCode gcc doesn't support LTO, but gcc built to explicitly enable it will work
ifneq (,$(GCC_VERSION))
ifeq (,$(shell $(GCC) -v /dev/null 2>&1 | grep '\-\-enable-lto'))