mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-29 12:52:18 -05:00
d4c1c40c1d
* hacks to align strings for clang... wow just wow
* start work to getting built with clang
* fix issues with struct constructors, all builds, doesn't link still
* fix some narrowing issues that clang complains about
* fix compliation of zapd
* fix null deref in VersionInfo
* builds with clang
* make stringbuilding use StringHelper instead of addition
* fix linking
* add CLANG SHIP overlay on clang built versions
* doesn't need to be volatile
* mark unknown strings as extern
* rename some stuff
* can't align extern
* hopefully fix compilation for everythign
* expandtab
* allow setting LD
* Revert "allow setting LD"
This reverts commit 711aba6db2
.
maybe to use lld it should be a LDFLAG?
* -Wno-deprecated-declarations is required for newer versions of clang
on macOS 13 beta sdk, the version of apple clang requires this
* Add jenkins support for clang
* Forward CXX flags to stormlib compilation
* Move GCC only flags to check
* use exports to set multiarch setup
* Fix Jenkins forever
* use make instead of cmake --build
add some flags to build with clang-11 as well
* address review coments
- rework extraction to allow multi thread
- misc readability cleanup
* update makefile to add WARN on linux+clang
Co-authored-by: David Chavez <david@dcvz.io>
141 lines
3.3 KiB
Makefile
141 lines
3.3 KiB
Makefile
# use variables in submakes
|
|
export
|
|
OPTIMIZATION_ON ?= 1
|
|
ASAN ?= 0
|
|
DEPRECATION_ON ?= 1
|
|
DEBUG ?= 0
|
|
COPYCHECK_ARGS ?=
|
|
LLD ?= 0
|
|
WERROR ?= 0
|
|
UNAME := $(shell uname)
|
|
|
|
# Use clang++ if available, else use g++
|
|
ifeq ($(shell command -v clang++ >/dev/null 2>&1; echo $$?),0)
|
|
CXX ?= clang++
|
|
else
|
|
CXX ?= g++
|
|
endif
|
|
|
|
INC := -I ZAPD -I lib/elfio -I lib/libgfxd -I lib/tinyxml2 -I ZAPDUtils
|
|
CXXFLAGS := -fpic -std=c++17 -Wall -Wextra -fno-omit-frame-pointer
|
|
OPTFLAGS :=
|
|
|
|
ifneq ($(DEBUG),0)
|
|
OPTIMIZATION_ON = 0
|
|
CXXFLAGS += -g3 -DDEVELOPMENT -D_DEBUG
|
|
COPYCHECK_ARGS += --devel
|
|
DEPRECATION_ON = 0
|
|
endif
|
|
|
|
ifneq ($(WERROR),0)
|
|
CXXFLAGS += -Werror
|
|
endif
|
|
|
|
ifeq ($(OPTIMIZATION_ON),0)
|
|
OPTFLAGS := -O0
|
|
else
|
|
OPTFLAGS := -O2
|
|
endif
|
|
|
|
ifneq ($(ASAN),0)
|
|
CXXFLAGS += -fsanitize=address -fsanitize=pointer-compare -fsanitize=pointer-subtract -fsanitize=undefined
|
|
endif
|
|
ifneq ($(DEPRECATION_ON),0)
|
|
CXXFLAGS += -DDEPRECATION_ON
|
|
endif
|
|
# CXXFLAGS += -DTEXTURE_DEBUG
|
|
|
|
LDFLAGS := -lm -ldl \
|
|
-L../StormLib/build -L../libultraship -lbz2 -pthread -lultraship -lstorm
|
|
|
|
ifeq ($(UNAME), Darwin)
|
|
LDFLAGS += $(shell pkg-config --libs glew libpng zlib) $(shell sdl2-config --libs) -framework OpenGL
|
|
INC += $(shell pkg-config --cflags libpng)
|
|
else
|
|
LDFLAGS += -lpng -lGL -lGLEW -lX11 -lz -lSDL2 -lpulse
|
|
endif
|
|
|
|
# Use LLD if available. Set LLD=0 to not use it
|
|
ifeq ($(shell command -v ld.lld >/dev/null 2>&1; echo $$?),0)
|
|
LLD := 1
|
|
endif
|
|
|
|
ifneq ($(LLD),0)
|
|
LDFLAGS += -fuse-ld=lld
|
|
endif
|
|
|
|
UNAMEM := $(shell uname -m)
|
|
ifneq ($(UNAME), Darwin)
|
|
LDFLAGS += -Wl,-export-dynamic -lstdc++fs
|
|
EXPORTERS := -Wl,--whole-archive ../OTRExporter/OTRExporter/OTRExporter.a -Wl,--no-whole-archive
|
|
else
|
|
EXPORTERS := -Wl,-force_load ../OTRExporter/OTRExporter/OTRExporter.a
|
|
endif
|
|
|
|
|
|
ZAPD_SRC_DIRS := $(shell find ZAPD -type d)
|
|
SRC_DIRS = $(ZAPD_SRC_DIRS) lib/tinyxml2
|
|
|
|
ZAPD_CPP_FILES := $(foreach dir,$(ZAPD_SRC_DIRS),$(wildcard $(dir)/*.cpp))
|
|
ZAPD_H_FILES := $(foreach dir,$(ZAPD_SRC_DIRS),$(wildcard $(dir)/*.h))
|
|
|
|
CPP_FILES += $(ZAPD_CPP_FILES) lib/tinyxml2/tinyxml2.cpp
|
|
O_FILES := $(foreach f,$(CPP_FILES:.cpp=.o),build/$f)
|
|
O_FILES += build/ZAPD/BuildInfo.o
|
|
|
|
# create build directories
|
|
$(shell mkdir -p $(foreach dir,$(SRC_DIRS),build/$(dir)))
|
|
|
|
|
|
# Main targets
|
|
all: ZAPD.out copycheck
|
|
|
|
build/ZAPD/BuildInfo.o:
|
|
python3 ZAPD/genbuildinfo.py $(COPYCHECK_ARGS)
|
|
$(CXX) $(CXXFLAGS) $(OPTFLAGS) $(INC) -c $(OUTPUT_OPTION) build/ZAPD/BuildInfo.cpp
|
|
|
|
copycheck: ZAPD.out
|
|
python3 copycheck.py
|
|
|
|
clean:
|
|
rm -rf build ZAPD.out
|
|
$(MAKE) -C lib/libgfxd clean
|
|
$(MAKE) -C ZAPDUtils clean
|
|
$(MAKE) -C ExporterTest clean
|
|
rm -rf ../StormLib/build
|
|
|
|
rebuild: clean all
|
|
|
|
format:
|
|
clang-format-11 -i $(ZAPD_CPP_FILES) $(ZAPD_H_FILES)
|
|
$(MAKE) -C ZAPDUtils format
|
|
$(MAKE) -C ExporterTest format
|
|
|
|
.PHONY: all build/ZAPD/BuildInfo.o copycheck clean rebuild format
|
|
|
|
build/%.o: %.cpp
|
|
$(CXX) $(CXXFLAGS) $(OPTFLAGS) $(INC) -c $(OUTPUT_OPTION) $<
|
|
|
|
|
|
# Submakes
|
|
lib/libgfxd/libgfxd.a:
|
|
$(MAKE) -C lib/libgfxd
|
|
|
|
.PHONY: StormLib
|
|
StormLib:
|
|
LDFLAGS="" cmake -B ../StormLib/build -S ../StormLib
|
|
$(MAKE) -C ../StormLib/build
|
|
|
|
.PHONY: ExporterTest
|
|
ExporterTest:
|
|
$(MAKE) -C ExporterTest
|
|
|
|
.PHONY: ZAPDUtils
|
|
ZAPDUtils:
|
|
$(MAKE) -C ZAPDUtils
|
|
|
|
|
|
# Linking
|
|
ZAPD.out: $(O_FILES) lib/libgfxd/libgfxd.a ExporterTest ZAPDUtils StormLib
|
|
$(CXX) $(CXXFLAGS) $(O_FILES) lib/libgfxd/libgfxd.a ZAPDUtils/ZAPDUtils.a ../StormLib/build/libstorm.a $(EXPORTERS) $(LDFLAGS) $(OUTPUT_OPTION)
|