Update terminalimageviewer.rb
This commit is contained in:
parent
e5ef996c44
commit
9123297951
1 changed files with 4 additions and 4 deletions
|
@ -12,15 +12,15 @@ class Terminalimageviewer < Formula
|
|||
system "make"
|
||||
if OS.mac?
|
||||
# No expermimental/filesystem.h on mac.
|
||||
system "/usr/local/bin/gcc-#{Formula["gcc"].version_suffix}", "-std=c++17",
|
||||
system "/usr/local/bin/g++-#{Formula["gcc"].version_suffix}", "-std=c++17",
|
||||
"-Wall",
|
||||
"-fpermissive",
|
||||
"-fexceptions",
|
||||
"-O2", "-c",
|
||||
"-L/usr/local/opt/gcc/lib/gcc/10/",
|
||||
"-L/usr/local/opt/gcc/lib/gcc/11/",
|
||||
"tiv.cpp", "-o", "tiv.o"
|
||||
system "/usr/local/bin/gcc-#{Formula["gcc"].version_suffix}", "tiv.o", "-o",
|
||||
"tiv", "-L/usr/local/opt/gcc/lib/gcc/10/",
|
||||
system "/usr/local/bin/g++-#{Formula["gcc"].version_suffix}", "tiv.o", "-o",
|
||||
"tiv", "-L/usr/local/opt/gcc/lib/gcc/11/",
|
||||
"-pthread", "-s"
|
||||
else
|
||||
system "make"
|
||||
|
|
Loading…
Reference in a new issue