From 9a6823bf4ecac81664a76889c340d16d26fa7451 Mon Sep 17 00:00:00 2001 From: Tim Keith Date: Thu, 14 Mar 2019 09:08:27 -0700 Subject: [PATCH] [flang] Change default for LINK_WITH_FIR to ON. Original-commit: flang-compiler/f18@b13f99446339666859eb00e896e8d1751423892a Reviewed-on: https://github.com/flang-compiler/f18/pull/331 --- flang/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flang/CMakeLists.txt b/flang/CMakeLists.txt index b473fc3eabdf..4c0f50ee0213 100644 --- a/flang/CMakeLists.txt +++ b/flang/CMakeLists.txt @@ -14,7 +14,7 @@ cmake_minimum_required(VERSION 3.9.0) -option(LINK_WITH_FIR "Link driver with FIR and LLVM" OFF) +option(LINK_WITH_FIR "Link driver with FIR and LLVM" ON) # Pass -DGCC=... to cmake to use a specific gcc installation. if( GCC )