Skip to content

Commit 876266c

Browse files
committed
update Makefiles
1 parent 97bb393 commit 876266c

File tree

166 files changed

+488
-488
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+488
-488
lines changed

Samples/BlackScholes/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,12 +291,12 @@ ifeq ($(TARGET_OS),linux)
291291
GCCVERSION := $(subst $(space),$(empty),$(GCCVERSION))
292292
#$(warning $(GCCVERSION))
293293

294-
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 51000)
294+
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 48000)
295295

296296
ifeq ($(IS_MIN_VERSION), 1)
297-
$(info >>> GCC Version is greater or equal to 5.1.0 <<<)
297+
$(info >>> GCC Version is greater or equal to 4.8.0 <<<)
298298
else
299-
$(info >>> Waiving build. Minimum GCC version required is 5.1.0<<<)
299+
$(info >>> Waiving build. Minimum GCC version required is 4.8.0<<<)
300300
SAMPLE_ENABLED := 0
301301
endif
302302
endif

Samples/BlackScholes_nvrtc/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,12 +310,12 @@ ifeq ($(TARGET_OS),linux)
310310
GCCVERSION := $(subst $(space),$(empty),$(GCCVERSION))
311311
#$(warning $(GCCVERSION))
312312

313-
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 51000)
313+
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 48000)
314314

315315
ifeq ($(IS_MIN_VERSION), 1)
316-
$(info >>> GCC Version is greater or equal to 5.1.0 <<<)
316+
$(info >>> GCC Version is greater or equal to 4.8.0 <<<)
317317
else
318-
$(info >>> Waiving build. Minimum GCC version required is 5.1.0<<<)
318+
$(info >>> Waiving build. Minimum GCC version required is 4.8.0<<<)
319319
SAMPLE_ENABLED := 0
320320
endif
321321
endif

Samples/EGLStream_CUDA_CrossGPU/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,12 +313,12 @@ ifeq ($(TARGET_OS),linux)
313313
GCCVERSION := $(subst $(space),$(empty),$(GCCVERSION))
314314
#$(warning $(GCCVERSION))
315315

316-
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 51000)
316+
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 48000)
317317

318318
ifeq ($(IS_MIN_VERSION), 1)
319-
$(info >>> GCC Version is greater or equal to 5.1.0 <<<)
319+
$(info >>> GCC Version is greater or equal to 4.8.0 <<<)
320320
else
321-
$(info >>> Waiving build. Minimum GCC version required is 5.1.0<<<)
321+
$(info >>> Waiving build. Minimum GCC version required is 4.8.0<<<)
322322
SAMPLE_ENABLED := 0
323323
endif
324324
endif

Samples/EGLStreams_CUDA_Interop/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,12 +319,12 @@ ifeq ($(TARGET_OS),linux)
319319
GCCVERSION := $(subst $(space),$(empty),$(GCCVERSION))
320320
#$(warning $(GCCVERSION))
321321

322-
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 51000)
322+
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 48000)
323323

324324
ifeq ($(IS_MIN_VERSION), 1)
325-
$(info >>> GCC Version is greater or equal to 5.1.0 <<<)
325+
$(info >>> GCC Version is greater or equal to 4.8.0 <<<)
326326
else
327-
$(info >>> Waiving build. Minimum GCC version required is 5.1.0<<<)
327+
$(info >>> Waiving build. Minimum GCC version required is 4.8.0<<<)
328328
SAMPLE_ENABLED := 0
329329
endif
330330
endif

Samples/EGLSync_CUDAEvent_Interop/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,12 +327,12 @@ ifeq ($(TARGET_OS),linux)
327327
GCCVERSION := $(subst $(space),$(empty),$(GCCVERSION))
328328
#$(warning $(GCCVERSION))
329329

330-
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 51000)
330+
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 48000)
331331

332332
ifeq ($(IS_MIN_VERSION), 1)
333-
$(info >>> GCC Version is greater or equal to 5.1.0 <<<)
333+
$(info >>> GCC Version is greater or equal to 4.8.0 <<<)
334334
else
335-
$(info >>> Waiving build. Minimum GCC version required is 5.1.0<<<)
335+
$(info >>> Waiving build. Minimum GCC version required is 4.8.0<<<)
336336
SAMPLE_ENABLED := 0
337337
endif
338338
endif

Samples/FDTD3d/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,12 +291,12 @@ ifeq ($(TARGET_OS),linux)
291291
GCCVERSION := $(subst $(space),$(empty),$(GCCVERSION))
292292
#$(warning $(GCCVERSION))
293293

294-
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 51000)
294+
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 48000)
295295

296296
ifeq ($(IS_MIN_VERSION), 1)
297-
$(info >>> GCC Version is greater or equal to 5.1.0 <<<)
297+
$(info >>> GCC Version is greater or equal to 4.8.0 <<<)
298298
else
299-
$(info >>> Waiving build. Minimum GCC version required is 5.1.0<<<)
299+
$(info >>> Waiving build. Minimum GCC version required is 4.8.0<<<)
300300
SAMPLE_ENABLED := 0
301301
endif
302302
endif

Samples/FilterBorderControlNPP/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,12 +297,12 @@ ifeq ($(TARGET_OS),linux)
297297
GCCVERSION := $(subst $(space),$(empty),$(GCCVERSION))
298298
#$(warning $(GCCVERSION))
299299

300-
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 51000)
300+
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 48000)
301301

302302
ifeq ($(IS_MIN_VERSION), 1)
303-
$(info >>> GCC Version is greater or equal to 5.1.0 <<<)
303+
$(info >>> GCC Version is greater or equal to 4.8.0 <<<)
304304
else
305-
$(info >>> Waiving build. Minimum GCC version required is 5.1.0<<<)
305+
$(info >>> Waiving build. Minimum GCC version required is 4.8.0<<<)
306306
SAMPLE_ENABLED := 0
307307
endif
308308
endif

Samples/FunctionPointers/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,12 +311,12 @@ ifeq ($(TARGET_OS),linux)
311311
GCCVERSION := $(subst $(space),$(empty),$(GCCVERSION))
312312
#$(warning $(GCCVERSION))
313313

314-
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 51000)
314+
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 48000)
315315

316316
ifeq ($(IS_MIN_VERSION), 1)
317-
$(info >>> GCC Version is greater or equal to 5.1.0 <<<)
317+
$(info >>> GCC Version is greater or equal to 4.8.0 <<<)
318318
else
319-
$(info >>> Waiving build. Minimum GCC version required is 5.1.0<<<)
319+
$(info >>> Waiving build. Minimum GCC version required is 4.8.0<<<)
320320
SAMPLE_ENABLED := 0
321321
endif
322322
endif

Samples/HSOpticalFlow/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,12 +291,12 @@ ifeq ($(TARGET_OS),linux)
291291
GCCVERSION := $(subst $(space),$(empty),$(GCCVERSION))
292292
#$(warning $(GCCVERSION))
293293

294-
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 51000)
294+
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 48000)
295295

296296
ifeq ($(IS_MIN_VERSION), 1)
297-
$(info >>> GCC Version is greater or equal to 5.1.0 <<<)
297+
$(info >>> GCC Version is greater or equal to 4.8.0 <<<)
298298
else
299-
$(info >>> Waiving build. Minimum GCC version required is 5.1.0<<<)
299+
$(info >>> Waiving build. Minimum GCC version required is 4.8.0<<<)
300300
SAMPLE_ENABLED := 0
301301
endif
302302
endif

Samples/MC_EstimatePiInlineP/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,12 +291,12 @@ ifeq ($(TARGET_OS),linux)
291291
GCCVERSION := $(subst $(space),$(empty),$(GCCVERSION))
292292
#$(warning $(GCCVERSION))
293293

294-
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 51000)
294+
IS_MIN_VERSION := $(shell expr `echo $(GCCVERSION)` \>= 48000)
295295

296296
ifeq ($(IS_MIN_VERSION), 1)
297-
$(info >>> GCC Version is greater or equal to 5.1.0 <<<)
297+
$(info >>> GCC Version is greater or equal to 4.8.0 <<<)
298298
else
299-
$(info >>> Waiving build. Minimum GCC version required is 5.1.0<<<)
299+
$(info >>> Waiving build. Minimum GCC version required is 4.8.0<<<)
300300
SAMPLE_ENABLED := 0
301301
endif
302302
endif

0 commit comments

Comments
 (0)