pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mk



Module Name:    pkgsrc
Committed By:   joerg
Date:           Thu Nov 10 20:59:43 UTC 2016

Modified Files:
        pkgsrc/mk: compiler.mk

Log Message:
Prepend the ABI flags to allow interested programs like qemu to
overwrite them on demand. This allows building ROM images and the like
with a special target ABI. Discussed a while ago with jperkin.


To generate a diff of this commit:
cvs rdiff -u -r1.82 -r1.83 pkgsrc/mk/compiler.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mk/compiler.mk
diff -u pkgsrc/mk/compiler.mk:1.82 pkgsrc/mk/compiler.mk:1.83
--- pkgsrc/mk/compiler.mk:1.82  Tue Dec  9 23:43:29 2014
+++ pkgsrc/mk/compiler.mk       Thu Nov 10 20:59:43 2016
@@ -1,4 +1,4 @@
-# $NetBSD: compiler.mk,v 1.82 2014/12/09 23:43:29 joerg Exp $
+# $NetBSD: compiler.mk,v 1.83 2016/11/10 20:59:43 joerg Exp $
 #
 # This Makefile fragment implements handling for supported C/C++/Fortran
 # compilers.
@@ -161,9 +161,9 @@ ${_var_}:=  ${${_var_}:C/^/_asdf_/1:M_asd
 _WRAP_EXTRA_ARGS.CC+=  ${_COMPILER_ABI_FLAG.${ABI}}
 _WRAP_EXTRA_ARGS.CXX+= ${_COMPILER_ABI_FLAG.${ABI}}
 _WRAP_EXTRA_ARGS.FC+=  ${_COMPILER_ABI_FLAG.${ABI}}
-CWRAPPERS_APPEND.cc+=  ${_COMPILER_ABI_FLAG.${ABI}}
-CWRAPPERS_APPEND.cxx+= ${_COMPILER_ABI_FLAG.${ABI}}
-CWRAPPERS_APPEND.f77+= ${_COMPILER_ABI_FLAG.${ABI}}
+CWRAPPERS_PREPEND.cc+= ${_COMPILER_ABI_FLAG.${ABI}}
+CWRAPPERS_PREPEND.cxx+=        ${_COMPILER_ABI_FLAG.${ABI}}
+CWRAPPERS_PREPEND.f77+=        ${_COMPILER_ABI_FLAG.${ABI}}
 .endif
 
 # If the languages are not requested, force them not to be available



Home | Main Index | Thread Index | Old Index