Changeset View
Changeset View
Standalone View
Standalone View
cad/zcad/files/makefile
| # $FreeBSD$ | # $FreeBSD$ | ||||
| OUTSUFX= lib/$(ARCH)-$(OPSYS:tl) | OUTSUFX= lib/$(ARCH)-$(OPSYS:tl) | ||||
| # XXX: sometimes the build crashes with ``An unhandled exception occurred | # XXX: sometimes the build crashes with ``An unhandled exception occurred | ||||
| # at $0814EBB3'' message (EAccessViolation: Access violation). It might | # at $0814EBB3'' message (EAccessViolation: Access violation). It might | ||||
| # be some concurrency issue, but it occurs even with MAKE_JOBS_UNSAFE, so | # be some concurrency issue, but it occurs even with MAKE_JOBS_UNSAFE, so | ||||
| # use the following simple workaround for the time being. | # use the following simple workaround for the time being. | ||||
| ZEALOUS_BUILD= sh -c 'i=0 ; until $(LAZBUILD_CMD) $$0 ; do \ | ZEALOUS_BUILD= sh -c 'i=0 ; until $(LAZBUILD_CMD) $(LAZBUILD_ARGS) --ws=$(LCL_PLATFORM) --lazarusdir=$(LAZARUS_DIR) $$0 ; do \ | ||||
| test $$i -lt 4 || return ; i=$$((i+1)) ; done' | test $$i -lt 4 || return ; i=$$((i+1)) ; done' | ||||
| all: ../$(OUTSUFX)/zcad.compiled | all: ../$(OUTSUFX)/zcad.compiled | ||||
| ZCAD_DEPS= \ | ZCAD_DEPS= \ | ||||
| other/AGraphLaz/lazarus/$(OUTSUFX)/ag_graph.compiled \ | other/AGraphLaz/lazarus/$(OUTSUFX)/ag_graph.compiled \ | ||||
| other/VirtualTreeView-Lazarus/Source/$(OUTSUFX)-$(GUI)/virtualtreeview_package.compiled \ | other/VirtualTreeView-Lazarus/Source/$(OUTSUFX)-$(GUI)/virtualtreeview_package.compiled \ | ||||
| components/zmath/$(OUTSUFX)/zmath.compiled \ | components/zmath/$(OUTSUFX)/zmath.compiled \ | ||||
| ▲ Show 20 Lines • Show All 68 Lines • Show Last 20 Lines | |||||