1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 17:04:47 +03:00

Merge pull request #2544 from github/dont-optimize-repl-or-util

Disable optimizations for Util and REPL to speed up -O1 builds.
This commit is contained in:
Patrick Thomson 2019-05-23 13:54:19 -04:00 committed by GitHub
commit 891527c491
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{-# LANGUAGE GADTs, GeneralizedNewtypeDeriving, TypeOperators, UndecidableInstances #-}
{-# OPTIONS_GHC -Wno-missing-signatures #-}
{-# OPTIONS_GHC -Wno-missing-signatures -O0 #-}
module Semantic.REPL
( rubyREPL
) where

View File

@ -1,5 +1,5 @@
{-# LANGUAGE CPP, ConstraintKinds, Rank2Types, ScopedTypeVariables, TypeFamilies, TypeOperators #-}
{-# OPTIONS_GHC -Wno-missing-signatures #-}
{-# OPTIONS_GHC -Wno-missing-signatures -O0 #-}
module Semantic.Util
( evalGoProject
, evalPHPProject