forked from OSchip/llvm-project
Export a new ARCH variable indicating what platform is being compiled
llvm-svn: 4936
This commit is contained in:
parent
c6509f487b
commit
138469df3a
|
@ -5,6 +5,9 @@
|
||||||
#
|
#
|
||||||
#===-----------------------------------------------------------------------====#
|
#===-----------------------------------------------------------------------====#
|
||||||
|
|
||||||
|
# Set the architecture so that x86 platform dependant code is compmiled
|
||||||
|
ARCH := x86
|
||||||
|
|
||||||
# MakeSharedObjectOption - This option is passed to the linker by
|
# MakeSharedObjectOption - This option is passed to the linker by
|
||||||
# Makefile.common when compiling a shared object.
|
# Makefile.common when compiling a shared object.
|
||||||
#
|
#
|
||||||
|
|
|
@ -5,6 +5,9 @@
|
||||||
#
|
#
|
||||||
#===-----------------------------------------------------------------------====#
|
#===-----------------------------------------------------------------------====#
|
||||||
|
|
||||||
|
# Set the architecture so that Sparc platform dependant code is compmiled
|
||||||
|
ARCH := Sparc
|
||||||
|
|
||||||
# MakeSharedObjectOption - This option is passed to the linker by
|
# MakeSharedObjectOption - This option is passed to the linker by
|
||||||
# Makefile.common when compiling a shared object.
|
# Makefile.common when compiling a shared object.
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue