Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Unified Diff: libstdc++-v3/configure

Side-by-side diff isn't available for this file because of its large size.
Issue 6761001: Compile stdc++ library with both static and dynamic linking. (Closed) Base URL: http://git.chromium.org/git/nacl-gcc@master
Patch Set: Removed libstdc++ rename. Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « no previous file | libtool.m4 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libstdc++-v3/configure
diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
index a4a4fae664660c2d5e1b22ac1392777e19f13faf..36767da725a50bd13e6e3ebc00977b90e338a56a 100755
--- a/libstdc++-v3/configure
+++ b/libstdc++-v3/configure
@@ -10170,7 +10170,7 @@ linux*oldld* | linux*aout* | linux*coff*)
;;
# This must be Linux ELF.
-linux* | k*bsd*-gnu | kopensolaris*-gnu)
+nacl* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
version_type=linux
need_lib_prefix=no
need_version=no
@@ -10266,7 +10266,9 @@ fi
# most powerpc-linux boxes support dynamic linking these days and
# people can always --disable-shared, the test was removed, and we
# assume the GNU/Linux dynamic linker is in use.
- dynamic_linker='GNU/Linux ld.so'
+ if [ $host_os != 'nacl' ] ; then
+ dynamic_linker='GNU/Linux ld.so'
+ fi
;;
netbsd*)
@@ -14096,7 +14098,7 @@ linux*oldld* | linux*aout* | linux*coff*)
;;
# This must be Linux ELF.
-linux* | k*bsd*-gnu | kopensolaris*-gnu)
+nacl* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
version_type=linux
need_lib_prefix=no
need_version=no
@@ -14192,7 +14194,9 @@ fi
# most powerpc-linux boxes support dynamic linking these days and
# people can always --disable-shared, the test was removed, and we
# assume the GNU/Linux dynamic linker is in use.
- dynamic_linker='GNU/Linux ld.so'
+ if [ $host_os != 'nacl' ] ; then
+ dynamic_linker='GNU/Linux ld.so'
+ fi
;;
netbsd*)
« no previous file with comments | « no previous file | libtool.m4 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698