mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
All platforms should be on equal footing now -- no special handling for
Sparc64 and IA-64.
This commit is contained in:
parent
67b831cca6
commit
2fe1eb28ab
1 changed files with 6 additions and 10 deletions
|
|
@ -1,14 +1,6 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "sparc64"
|
||||
SUBDIR+= csu libgcc
|
||||
.else
|
||||
NO_CXX= yes
|
||||
NO_OBJC=yes
|
||||
NO_FORTRAN=yes
|
||||
.endif
|
||||
|
||||
SUBDIR+= libdialog libregex libreadline
|
||||
SUBDIR= csu libgcc libdialog libregex libreadline
|
||||
|
||||
.if ${OBJFORMAT} == aout
|
||||
.if !defined(NOLIBC_R)
|
||||
|
|
@ -16,8 +8,12 @@ SUBDIR+= libgcc_r
|
|||
.endif
|
||||
.endif
|
||||
|
||||
.if ${CXX:T} == "c++"
|
||||
NO_CXX= yes
|
||||
.endif
|
||||
|
||||
.if !defined(NO_CXX)
|
||||
SUBDIR+= libstdc++
|
||||
SUBDIR+= libsupc++ libstdc++
|
||||
.endif
|
||||
|
||||
.if !defined(NO_OBJC)
|
||||
|
|
|
|||
Loading…
Reference in a new issue