svn commit: r520879 - head/games/tome4

Piotr Kubaj pkubaj at FreeBSD.org
Wed Dec 25 17:53:38 UTC 2019


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;" ""


More information about the svn-ports-all mailing list