Package Details: warzone2100-git r15440.ca2727322-1

Git Clone URL: https://aur.archlinux.org/warzone2100-git.git (read-only, click to copy)
Package Base: warzone2100-git
Description: 3D realtime strategy game on a future Earth (Git version)
Upstream URL: http://wz2100.net/
Keywords: game
Licenses: GPL
Conflicts: warzone2100
Provides: warzone, warzone-svn, warzone2100, warzone2100-beta
Submitter: disastro
Maintainer: disastro
Last Packager: disastro
Votes: 10
Popularity: 0.001425
First Submitted: 2010-11-28 08:49 (UTC)
Last Updated: 2020-07-07 13:00 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

disastro commented on 2017-06-15 05:54 (UTC)

@mnovick1988 Holy o.o those CFLAGS. So nothing to do with physfs or -Werror, everything to do with your setup why it won't build. Package won't change, use -O2 and it builds fine even with your other "optimizations"

EndlessEden commented on 2017-06-14 18:01 (UTC)

// Ok... ive said it before.... // So, following is from the build log... (I included CFLAGS, for reference) \\ -march=native -mmmx -mno-3dnow -msse -msse2 -msse3 -mssse3 -msse4a -mcx16 -mno-movbe -maes -mno-sha -mpclmul -mpopcnt -mlwp -mfma -mfma4 -mxop -mbmi -mno-bmi2 -mtbm -mavx -mno-avx2 -msse4.2 -msse4.1 -mlzcnt -mno-rtm -mno-rdrnd -mf16c -mno-fsgsbase -mno-rdseed -mprfchw -mno-adx -mfxsr -mxsave -mno-xsaveopt -mno-avx512f -mno-avx512er -mno-avx512cd -mno-avx512pf -mno-prefetchwt1 -mno-clflushopt -mno-xsavec -mno-xsaves -mno-avx512dq -mno-avx512bw -mno-avx512vl -mno-avx512ifma -mno-avx512vbmi -mno-clwb -mno-mwaitx -mno-clzero -mno-pku -O4 -pipe -fstack-protector-strong -fPIC -std=c++11 -fstack-protector -MT nettypes.o -MD -MP -MF .deps/nettypes.Tpo -c -o nettypes.o nettypes.cpp mv -f .deps/netqueue.Tpo .deps/netqueue.Po mv -f .deps/netjoin_stub.Tpo .deps/netjoin_stub.Po mv -f .deps/netlog.Tpo .deps/netlog.Po mv -f .deps/netsocket.Tpo .deps/netsocket.Po nettypes.cpp: In function ‘void NETqstring(QString&)’: nettypes.cpp:91:10: error: ‘c’ may be used uninitialized in this function [-Werror=maybe-uninitialized] uint8_t b[2] = {uint8_t(v >> 8), uint8_t(v)}; ^ nettypes.cpp:679:12: note: ‘c’ was declared here uint16_t c; ^ cc1plus: all warnings being treated as errors make[2]: *** [Makefile:453: nettypes.o] Error 1 make[2]: *** Waiting for unfinished jobs.... //

disastro commented on 2017-06-10 07:42 (UTC)

Still builds fine... Without giving me the errors I can't really do anything. Maybe debug your issue on #warzone2100@freenode ?

EndlessEden commented on 2017-05-25 04:31 (UTC)

Still throws that error... find . -type f -iname "Makefile" -print0 | while IFS= read -r -d $'\0' line; do tr -d '-Werror' "$line" done takes care of it

disastro commented on 2016-03-16 08:33 (UTC)

@mnovick1988 The package builds fine for me?

EndlessEden commented on 2016-03-16 01:58 (UTC)

@disastro: can you clean the config after generation to remove (-Werror=deprecated-declarations) as physfs has updated, but warzone2100 is not updated.

disastro commented on 2016-01-29 08:16 (UTC)

Thank you for notifying. Unfortunately it's not good to set the versioning manually either, changed to using revision number.

EndlessEden commented on 2016-01-29 04:07 (UTC)

Please change the pkgver() function to be more arch-friendly. (master_base is not a integer) Current GIT version is 3.1.3.R(release), this pkgver script will insert 3.1.3(.r{release-version}.{commitID}) ----------------------------------------------- pkgver() { cd "$_gitname" _gversion=`git describe --long | sed -r 's/master_base//g' |sed -r 's/([^-]*-g)/r\1/;s/-/./g'` echo "3.1.3"$_gversion }

kalsan commented on 2015-06-04 19:35 (UTC)

By the way, missing dependency: sdl2

kalsan commented on 2015-06-04 19:26 (UTC)

Yay, it works now :-) Nice job, thanks a lot!