compile 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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"
  18. dbg=0
  19. if [ "$dbg" = 1 ]; then
  20. cflags="-O0 -g3"
  21. ldflags="-O0 -g3"
  22. else
  23. cflags="-O2 -fvisibility=hidden"
  24. ldflags="-O2 -s"
  25. fi
  26. objs=
  27. cc() {
  28. _bn="`basename "$1"`"
  29. objs="$objs .build/${_bn%%.c}.o"
  30. _mn=" -DMODULE_NAME=${_bn%%.c}"
  31. # ugly annoying special case
  32. if [ "$_mn" = " -DMODULE_NAME=con_" ]; then _mn=" -DMODULE_NAME=con"
  33. elif [ "$_mn" = "-DMODULE_NAME=sst" ]; then _mn=; fi
  34. # note: using typeof and bool from C23 - see detailed comment in compile.bat
  35. $CC -m32 -c -flto -fpic -fno-ident $cflags $warnings -I.build/include \
  36. -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64$_mn \
  37. -Dtypeof=__typeof -include stdbool.h -o ".build/${_bn%%.c}.o" "src/$1"
  38. }
  39. ld() {
  40. $CC -shared -flto -fpic -fuse-ld=lld $ldflags -L.build -ldl \
  41. -ltier0 -lvstdlib -o sst.so$objs
  42. }
  43. src="\
  44. ac.c
  45. alias.c
  46. autojump.c
  47. bind.c
  48. chunklets/fastspin.c
  49. chunklets/msg.c
  50. con_.c
  51. crypto.c
  52. democustom.c
  53. demorec.c
  54. engineapi.c
  55. ent.c
  56. errmsg.c
  57. extmalloc.c
  58. fixes.c
  59. fov.c
  60. gamedata.c
  61. gameinfo.c
  62. hook.c
  63. kv.c
  64. kvsys.c
  65. l4dmm.c
  66. l4dreset.c
  67. l4dwarp.c
  68. nosleep.c
  69. portalcolours.c
  70. sst.c
  71. x86.c"
  72. if [ "$dbg" = 1 ]; then src="$src \
  73. dbg.c
  74. udis86.c"
  75. fi
  76. $HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -include stdbool.h \
  77. -o .build/codegen src/build/codegen.c src/build/cmeta.c
  78. $HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -include stdbool.h \
  79. -o .build/mkgamedata src/build/mkgamedata.c src/kv.c
  80. $HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -include stdbool.h \
  81. -o .build/mkentprops src/build/mkentprops.c src/kv.c
  82. .build/codegen `for s in $src; do echo "src/$s"; done`
  83. .build/mkgamedata gamedata/engine.kv gamedata/gamelib.kv gamedata/inputsystem.kv \
  84. gamedata/matchmaking.kv
  85. .build/mkentprops gamedata/entprops.kv
  86. for s in $src; do cc "$s"; done
  87. $CC -shared -fpic -fuse-ld=lld -O0 -w -o .build/libtier0.so src/stubs/tier0.c
  88. $CC -shared -fpic -fuse-ld=lld -O0 -w -o .build/libvstdlib.so src/stubs/vstdlib.c
  89. ld
  90. $HOSTCC -O2 -g3 -include test/test.h -o .build/bitbuf.test test/bitbuf.test.c
  91. .build/bitbuf.test
  92. # skipping this test on linux for now, since inline hooks aren't compiled in
  93. #$HOSTCC -m32 -O2 -g3 -include test/test.h -o .build/hook.test test/hook.test.c
  94. #.build/hook.test
  95. $HOSTCC -O2 -g3 -include test/test.h -o .build/kv.test test/kv.test.c
  96. .build/kv.test
  97. $HOSTCC -O2 -g3 -include test/test.h -o .build/x86.test test/x86.test.c
  98. .build/x86.test
  99. # vi: sw=4 tw=4 noet tw=80 cc=80