Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Dec 2019 17:53:38 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r520879 - head/games/tome4
Message-ID:  <201912251753.xBPHrcJb041110@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed Dec 25 17:53:37 2019
New Revision: 520879
URL: https://svnweb.freebsd.org/changeset/ports/520879

Log:
  games/tome4: add MAKE_JOBS_UNSAFE=yes
  
  I'm hitting race condition on powerpc64 with 32 threads:
  ==== Building TEngine (release) ====
  Creating ../obj/Release/TEngine
  noise.c
  cc -O2 -pipe -fstack-protector-all -fno-strict-aliasing -std=gnu89   -MMD -MP -DGLEW_STATIC -DNDEBUG=1 -D_DEFAULT_VIDEOMODE_FLAGS_='SDL_HWSURFACE|SDL_DOUBLEBUF' -DTENGINE_HOME_PATH='".t-engine"' -DTE4CORE_VERSION=17 -DSELFEXE_BSD -I../src -I../src/luasocket -I../src/fov -I../src/expat -I../src/lxp -I../src/libtcod_import -I../src/physfs -I../src/zlib -I../src/bzip2 -I../src/luajit2/src -I../src/luajit2/dynasm -I/usr/local/include  -pthread  -o "../obj/Release/TEngine/noise.o" -MF ../obj/Release/TEngine/noise.d -c "../src/noise.c"
  mkdir -p ../obj/Release/TEngine
  error: unable to open output file '../obj/Release/TEngine/noise.o': 'No such file or directory'
  1 error generated.
  core_lua.c
  SFMT.c
  serial.c
  
  PR:		242556
  Approved by:	lifanov (maintainer timeout)

Modified:
  head/games/tome4/Makefile

Modified: head/games/tome4/Makefile
==============================================================================
--- head/games/tome4/Makefile	Wed Dec 25 16:48:12 2019	(r520878)
+++ head/games/tome4/Makefile	Wed Dec 25 17:53:37 2019	(r520879)
@@ -27,6 +27,7 @@ USE_CSTD=	gnu89
 SUB_FILES=	tome4
 
 LLD_UNSAFE=	yes
+MAKE_JOBS_UNSAFE=	yes
 
 DESKTOP_ENTRIES="ToME 4" "" "${PORTNAME}" \
 		"${PORTNAME}" "Game;RolePlaying;" ""



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912251753.xBPHrcJb041110>