We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4ccc51 commit 12e3fb5Copy full SHA for 12e3fb5
Makefile.linux
@@ -16,7 +16,10 @@ SRCS = $(SRC_PATH)/frawscale.cpp
16
SRCS += $(SRC_PATH)/libsrcnn.cpp
17
OBJS = $(SRCS:$(SRC_PATH)/%.cpp=$(OBJ_PATH)/%.o)
18
19
-CFLAGS = -mtune=native -fopenmp -ffast-math
+# -fPIC option usally used for nVidia JetsonTX2 AARCH64.
20
+# remove this option if it cuased to build error.
21
+CFLAGS = -mtune=native -fopenmp -ffast-math
22
+CFLAGS += -fPIC
23
CFLAGS += -I$(SRC_PATH)
24
CFLAGS += -DBUILDING_DLL
25
0 commit comments