Skip to content
Snippets Groups Projects
Commit af57525d authored by Lucas Magalhães's avatar Lucas Magalhães
Browse files

driver.makefile: Cleanup support for older base versions

parent 3e0b11e5
No related branches found
No related tags found
1 merge request!92E3 924: General require cleanup
......@@ -114,16 +114,6 @@ HEADERS=
BASH_ENV=
ENV=
# There is no 64 bit support before 3.14.12
ifneq ($(filter %_64,$(EPICS_HOST_ARCH)),)
ifeq ($(wildcard $(EPICS_BASE)/lib/$(EPICS_HOST_ARCH)),)
EPICS_HOST_ARCH:=$(patsubst %_64,%,$(EPICS_HOST_ARCH))
USR_CFLAGS_$(EPICS_HOST_ARCH) += -m32
USR_CXXFLAGS_$(EPICS_HOST_ARCH) += -m32
USR_LDFLAGS_$(EPICS_HOST_ARCH) += -m32
endif
endif
# Default target is "build" for all versions.
# Don't install anything (different from default EPICS make rules).
default: build
......@@ -194,13 +184,7 @@ USR_CPPFLAGS+=-DUSE_TYPED_RSET
endif
SHRLIB_VERSION=
# do not link *everything* with readline (and curses)
COMMANDLINE_LIBRARY =
# Relax (3.13) cross compilers (default is STRICT) to allow sloppier syntax.
CMPLR=STD
GCC_STD = $(GCC)
CXXCMPLR=ANSI
G++_ANSI = $(G++) -ansi
OBJ=.o
COMMON_DIR = O.${EPICSVERSION}_Common
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment