Skip to content

Commit

Permalink
parallel-libs/mumps: fix intel compiler warning
Browse files Browse the repository at this point in the history
ifort: command line warning #10434: option '-nofor_main' use with underscore is deprecated; use '-nofor-main' instead

Signed-off-by: Adrian Reber <areber@redhat.com>
  • Loading branch information
adrianreber committed Apr 2, 2023
1 parent 961f59a commit 5e38a37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ LIBOTHERS = -lpthread
CDEFS = -DAdd_

#Begin Optimized options
OPTF = -O -DALLOW_NON_INIT -nofor_main
OPTL = -O -nofor_main
OPTF = -O -DALLOW_NON_INIT -nofor-main
OPTL = -O -nofor-main
OPTC = -O
#End Optimized options
INCS = $(INCPAR)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ LIBOTHERS = -lpthread
CDEFS = -DAdd_

#Begin Optimized options
OPTF = -O -DALLOW_NON_INIT -nofor_main -diag-warning 5286
OPTL = -O -nofor_main
OPTF = -O -DALLOW_NON_INIT -nofor-main -diag-warning 5286
OPTL = -O -nofor-main
OPTC = -O
#End Optimized options
INCS = $(INCPAR)
Expand Down

0 comments on commit 5e38a37

Please sign in to comment.