mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-23 21:13:18 -08:00
Fix compilation for AIX and xlc compiler.
This commit is contained in:
parent
bc986e60e1
commit
52de2ceea6
6 changed files with 81 additions and 11 deletions
|
|
@ -137,7 +137,10 @@ we are currently using with ECL."
|
|||
(executable-features
|
||||
#-windows
|
||||
(run-and-collect-keywords "file" (list ecl-binary)))
|
||||
(compiler-version (run-and-collect-keywords c::*cc* '("--version")))
|
||||
(compiler-version (run-and-collect-keywords c::*cc*
|
||||
(if (search "xlc" c::*cc*)
|
||||
'("-qversion")
|
||||
'("--version"))))
|
||||
(compiler-features (reduce #'append
|
||||
(mapcar #'rest
|
||||
(compiler-defines +compiler-macros+)))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue