Skip to content
Snippets Groups Projects
Commit 662ed539 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

Merge branch 'feature/kernel/clang-is-gccMode' into 'master'

[kernel] acknowledge that clang has the same builtins as gcc

See merge request frama-c/frama-c!4329
parents 17acb89d 32e06e3c
No related branches found
No related tags found
No related merge requests found
...@@ -160,7 +160,8 @@ let copyMachine src dst = ...@@ -160,7 +160,8 @@ let copyMachine src dst =
let theMachine = createMachine () let theMachine = createMachine ()
let msvcMode () = (theMachine.theMachine.compiler = "msvc") let msvcMode () = (theMachine.theMachine.compiler = "msvc")
let gccMode () = (theMachine.theMachine.compiler = "gcc") let gccMode () = (theMachine.theMachine.compiler = "gcc"
|| theMachine.theMachine.compiler = "clang")
let acceptEmptyCompinfo = ref false let acceptEmptyCompinfo = ref false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment