compile 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #!/bin/sh -e
  2. # This file is dedicated to the public domain.
  3. case "`uname -s`" in
  4. # weird people using Windows Bash might type ./compile, help them out :)
  5. *NT*) # msys2 or busybox-w32
  6. echo "You're on Windows, idiot! Running compile.bat for you.">&2
  7. exec cmd /c compile.bat ;;
  8. esac
  9. case "`uname -r`" in
  10. *Microsoft*)
  11. echo "NOTE: building inside WSL. Use compile.bat to build for Windows!">&2
  12. esac
  13. mkdir -p .build/include
  14. : "${CC:=clang --target=-i686-pc-linux-gnu}"
  15. : "${HOSTCC:=clang}"
  16. warnings="-Wall -pedantic -Wno-parentheses -Wno-missing-braces \
  17. -Wno-gnu-zero-variadic-macro-arguments -Werror=implicit-function-declaration \
  18. -Werror=vla"
  19. dbg=0
  20. if [ "$dbg" = 1 ]; then
  21. cflags="-O0 -g3"
  22. ldflags="-O0 -g3"
  23. else
  24. cflags="-O2 -fvisibility=hidden"
  25. ldflags="-O2 -s"
  26. fi
  27. objs=
  28. cc() {
  29. _bn="`basename "$1"`"
  30. objs="$objs .build/${_bn%%.c}.o"
  31. _mn=" -DMODULE_NAME=${_bn%%.c}"
  32. # ugly annoying special case
  33. if [ "$_mn" = " -DMODULE_NAME=con_" ]; then _mn=" -DMODULE_NAME=con"
  34. elif [ "$_mn" = "-DMODULE_NAME=sst" ]; then _mn=; fi
  35. # note: using typeof and bool from C23 - see detailed comment in compile.bat
  36. $CC -c -flto -fpic -fno-ident $cflags $warnings -I.build/include \
  37. -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64$_mn \
  38. -Dtypeof=__typeof -include stdbool.h -o ".build/${_bn%%.c}.o" "src/$1"
  39. }
  40. ld() {
  41. $CC -shared -flto -fpic -fuse-ld=lld $ldflags -L.build -ldl \
  42. -ltier0 -lvstdlib -o sst.so$objs
  43. }
  44. src="\
  45. ac.c
  46. alias.c
  47. autojump.c
  48. bind.c
  49. chunklets/fastspin.c
  50. chunklets/msg.c
  51. con_.c
  52. crypto.c
  53. democustom.c
  54. demorec.c
  55. engineapi.c
  56. ent.c
  57. errmsg.c
  58. extmalloc.c
  59. fastfwd.c
  60. fixes.c
  61. fov.c
  62. gamedata.c
  63. gameinfo.c
  64. gameserver.c
  65. hexcolour.c
  66. hook.c
  67. hud.c
  68. kvsys.c
  69. l4dmm.c
  70. l4dreset.c
  71. l4dwarp.c
  72. nosleep.c
  73. portalcolours.c
  74. sst.c
  75. xhair.c
  76. x86.c"
  77. if [ "$dbg" = 1 ]; then src="$src \
  78. dbg.c
  79. udis86.c"
  80. fi
  81. $HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -include stdbool.h \
  82. -o .build/codegen src/build/codegen.c src/build/cmeta.c
  83. $HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -include stdbool.h \
  84. -o .build/mkgamedata src/build/mkgamedata.c src/kv.c
  85. $HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -include stdbool.h \
  86. -o .build/mkentprops src/build/mkentprops.c src/kv.c
  87. .build/codegen `for s in $src; do echo "src/$s"; done`
  88. .build/mkgamedata gamedata/engine.kv gamedata/gamelib.kv gamedata/inputsystem.kv \
  89. gamedata/matchmaking.kv gamedata/vgui2.kv gamedata/vguimatsurface.kv
  90. .build/mkentprops gamedata/entprops.kv
  91. for s in $src; do cc "$s"; done
  92. $CC -shared -fpic -fuse-ld=lld -O0 -w -o .build/libtier0.so src/stubs/tier0.c
  93. $CC -shared -fpic -fuse-ld=lld -O0 -w -o .build/libvstdlib.so src/stubs/vstdlib.c
  94. ld
  95. $HOSTCC -O2 -g3 -include test/test.h -o .build/bitbuf.test test/bitbuf.test.c
  96. .build/bitbuf.test
  97. # skipping this test on linux for now, since inline hooks aren't compiled in
  98. #$HOSTCC -m32 -O2 -g3 -include test/test.h -o .build/hook.test test/hook.test.c
  99. #.build/hook.test
  100. $HOSTCC -O2 -g3 -include test/test.h -o .build/kv.test test/kv.test.c
  101. .build/kv.test
  102. $HOSTCC -O2 -g3 -include test/test.h -o .build/x86.test test/x86.test.c
  103. .build/x86.test
  104. # vi: sw=4 tw=4 noet tw=80 cc=80