Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions platforms/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ target_compile_options (slideruleLib PUBLIC -Wall) # turn on "all" warnings
target_compile_options (slideruleLib PUBLIC -Wextra) # turn on "extra" warnings
target_compile_options (slideruleLib PUBLIC -Wreorder) # turn on warning for object initializer list order enforcement
target_compile_options (slideruleLib PUBLIC -Wshadow) # turn on warning for inner scope var with same name as outer scope var
target_compile_options (slideruleLib PUBLIC -Wno-psabi) # suppress ABI compatibility notes (e.g., C++17 parameter passing changes)
target_compile_options (slideruleLib PUBLIC "$<$<CONFIG:Debug>:-fstack-protector-all>")
target_compile_definitions (slideruleLib PUBLIC "$<$<CONFIG:Debug>:__no_unload__>") # don't unload dynamic modules when in debug so symbols available to address sanitizer postmortem

Expand Down
4 changes: 2 additions & 2 deletions targets/slideruleearth/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ RELEASE_CFG := -DCMAKE_BUILD_TYPE=Release
RELEASE_CFG += $(COMMON_CFG)

all: ## build the server using the local configuration
make -j8 -C $(SLIDERULE_BUILD_DIR)
make -C $(SLIDERULE_BUILD_DIR) install
@set -o pipefail; make -j8 -C $(SLIDERULE_BUILD_DIR) 2>&1 | grep -v "parameter passing for argument of type.*when C..17 is enabled" || test $$? -eq 141
@set -o pipefail; make -C $(SLIDERULE_BUILD_DIR) install 2>&1 | grep -v "parameter passing for argument of type.*when C..17 is enabled" || test $$? -eq 141

prep: ## create temporary directories needed for build
mkdir -p $(SLIDERULE_BUILD_DIR)
Expand Down
Loading