Skip to content

Commit 12f4a84

Browse files
authored
.mk removing repeated configs
1 parent 9c5f6d9 commit 12f4a84

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

libs/openFrameworksCompiled/project/linux64/config.linux64.default.mk

-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,3 @@
2828
include $(OF_SHARED_MAKEFILES_PATH)/config.linux.common.mk
2929

3030
PLATFORM_LDFLAGS += -fuse-ld=gold
31-
PLATFORM_LDFLAGS += -lstdc++fs

libs/openFrameworksCompiled/project/linuxaarch64/config.linuxaarch64.default.mk

-7
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,6 @@ include $(OF_SHARED_MAKEFILES_PATH)/config.linux.common.mk
3838
# Note: Leave a leading space when adding list items with the += operator
3939
################################################################################
4040

41-
#c++ 17 support - comment out two lines below to use c++11
42-
PLATFORM_CFLAGS += -std=c++17
43-
PLATFORM_LDFLAGS += -lstdc++fs
44-
PLATFORM_CXXVER = -std=c++17
45-
46-
47-
PLATFORM_LDFLAGS += -lstdc++fs
4841
PLATFORM_LDFLAGS += -no-pie
4942
# PLATFORM_LDFLAGS += -nostartfiles
5043

libs/openFrameworksCompiled/project/osx/config.osx.default.mk

+1-2
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,11 @@ endif
8585
PLATFORM_CFLAGS = -stdlib=$(MAC_OS_STD_LIB)
8686

8787
# Warning Flags (http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html)
88-
PLATFORM_CFLAGS += -Wall
88+
PLATFORM_CFLAGS += -Wall -Werror=return-type
8989

9090
# Code Generation Option Flags (http://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html)
9191
PLATFORM_CFLAGS += -fexceptions
9292

93-
PLATFORM_CFLAGS += -Werror=return-type
9493

9594
ifeq ($(shell xcode-select -print-path 2> /dev/null; echo $$?),0)
9695
MAC_OS_XCODE_ROOT=$(shell xcode-select -print-path)

0 commit comments

Comments
 (0)