mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
HP aCC (and a bunch of other compilers, no doubt) don't share
GCC's syntax for auto-dependency generation stuff. This should be changed to be disabling dependency stuff unless GCC/ICC is found. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26201 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
eb713400cb
commit
197ab8787f
@ -951,6 +951,11 @@ endif
|
||||
# Object Build Rules: Build object files based on sources
|
||||
###############################################################################
|
||||
|
||||
# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
|
||||
ifeq ($(OS),HP-UX)
|
||||
DISABLE_AUTO_DEPENDENCIES=1
|
||||
endif
|
||||
|
||||
# Provide rule sets for when dependency generation is enabled
|
||||
ifndef DISABLE_AUTO_DEPENDENCIES
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user