From 187359d84f75928088559a9979231bb7ec2efe78 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Fri, 10 Jan 2020 16:17:42 -0500 Subject: [PATCH] Use the os's specified c compiler --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 36f6bd3..60a6e56 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ target: mkdir -p target target/nbody.c: target - clang -O3 -fomit-frame-pointer -march=native -funroll-loops \ + $(cc) -O3 -fomit-frame-pointer -march=native -funroll-loops \ nbody.c -o target/nbody.c -lm target/nbody-1: