compile 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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 -fuse-ld=lld}"
  15. : "${HOSTCC:=clang -fuse-ld=lld}"
  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="-Og -g3"
  21. ldflags="-Og -g3"
  22. else
  23. cflags="-O2"
  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 $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 -m32 -shared -flto -fpic -fno-ident -fuse-ld=lld $ldflags \
  41. -L.build -ldl -ltier0 -lvstdlib -o sst.so$objs
  42. }
  43. src="\
  44. ac.c
  45. bind.c
  46. crypto.c
  47. alias.c
  48. autojump.c
  49. con_.c
  50. democustom.c
  51. demorec.c
  52. engineapi.c
  53. ent.c
  54. errmsg.c
  55. extmalloc.c
  56. fixes.c
  57. fov.c
  58. gamedata.c
  59. gameinfo.c
  60. hook.c
  61. kv.c
  62. kvsys.c
  63. l4dmm.c
  64. l4dreset.c
  65. l4dwarp.c
  66. nosleep.c
  67. portalcolours.c
  68. sst.c
  69. x86.c"
  70. if [ "$dbg" = 1 ]; then src="$src \
  71. dbg.c
  72. udis86.c"
  73. fi
  74. $HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -include stdbool.h \
  75. -o .build/codegen src/build/codegen.c src/build/cmeta.c
  76. $HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -include stdbool.h \
  77. -o .build/mkgamedata src/build/mkgamedata.c src/kv.c
  78. $HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -include stdbool.h \
  79. -o .build/mkentprops src/build/mkentprops.c src/kv.c
  80. .build/codegen `for s in $src; do echo "src/$s"; done`
  81. .build/mkgamedata gamedata/engine.kv gamedata/gamelib.kv gamedata/inputsystem.kv \
  82. gamedata/matchmaking.kv
  83. .build/mkentprops gamedata/entprops.kv
  84. for s in $src; do cc "$s"; done
  85. $CC -shared -fpic -fuse-ld=lld -O0 -w -o .build/libtier0.so src/stubs/tier0.c
  86. $CC -shared -fpic -fuse-ld=lld -O0 -w -o .build/libvstdlib.so src/stubs/vstdlib.c
  87. ld
  88. $HOSTCC -O2 -g3 -include test/test.h -o .build/bitbuf.test test/bitbuf.test.c
  89. .build/bitbuf.test
  90. # skipping this test on linux for now, since inline hooks aren't compiled in
  91. #$HOSTCC -m32 -O2 -g3 -include test/test.h -o .build/hook.test test/hook.test.c
  92. #.build/hook.test
  93. $HOSTCC -O2 -g3 -include test/test.h -o .build/kv.test test/kv.test.c
  94. .build/kv.test
  95. # vi: sw=4 tw=4 noet tw=80 cc=80