Browse Source

Merge pull request #2951 from martin-frbg/cleanup_make

Minor Makefile cleanup
tags/v0.3.13^2
Martin Kroeker GitHub 5 years ago
parent
commit
6e13a7e99e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      Makefile.system
  2. +1
    -1
      interface/Makefile

+ 1
- 1
Makefile.system View File

@@ -855,7 +855,7 @@ CCOMMON_OPT += -DF_INTERFACE_FLANG
FCOMMON_OPT += -Mrecursive -Kieee
ifeq ($(OSNAME), Linux)
ifeq ($(ARCH), x86_64)
FLANG_VENDOR := $(shell expr `$(FC) --version|cut -f 1 -d "."|head -1`)
FLANG_VENDOR := $(shell `$(FC) --version|cut -f 1 -d "."|head -1`)
ifeq ($(FLANG_VENDOR),AOCC)
FCOMMON_OPT += -fno-unroll-loops
endif


+ 1
- 1
interface/Makefile View File

@@ -507,7 +507,7 @@ ifneq ($(BUILD_COMPLEX16),1)
endif

FUNCOBJS = $(SBEXTOBJS) $(CXERBLAOBJS) $(SBBLASOBJS) $(SBLASOBJS) $(DBLASOBJS) $(CBLASOBJS) $(ZBLASOBJS)
$(info FUNCOBJS = {[$(FUNCOBJS)]} )
ifdef EXPRECISION
FUNCOBJS += $(QBLASOBJS) $(XBLASOBJS)
endif


Loading…
Cancel
Save