Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
Enable libpython3.so for VxWorks.
4 changes: 2 additions & 2 deletions configure
Original file line numberDiff line numberDiff line change
Expand Up@@ -5937,7 +5937,7 @@ $as_echo "#define Py_ENABLE_SHARED 1" >>confdefs.h
PY3LIBRARY=libpython3.so
fi
;
Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*|OpenBSD*)
Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*|OpenBSD*|VxWorks*)
LDLIBRARY='libpython$(LDVERSION).so'
BLDLIBRARY='-L. -lpython$(LDVERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
Expand DownExpand Up@@ -9721,7 +9721,7 @@ then
# when running test_compile.py.
LINKFORSHARED='-Wl,-E -N 2048K';
VxWorks*)
LINKFORSHARED='--export-dynamic';
LINKFORSHARED='-Wl,-export-dynamic';
esac
fi
{$as_echo "$as_me:${as_lineno-$LINENO}: result: $LINKFORSHARED" >&5
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line numberDiff line numberDiff line change
Expand Up@@ -1133,7 +1133,7 @@ if test $enable_shared = "yes" then
PY3LIBRARY=libpython3.so
fi
;
Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*|OpenBSD*)
Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*|OpenBSD*|VxWorks*)
LDLIBRARY='libpython$(LDVERSION).so'
BLDLIBRARY='-L. -lpython$(LDVERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
Expand DownExpand Up@@ -2798,7 +2798,7 @@ then
# when running test_compile.py.
LINKFORSHARED='-Wl,-E -N 2048K';
VxWorks*)
LINKFORSHARED='--export-dynamic';
LINKFORSHARED='-Wl,-export-dynamic';
esac
fi
AC_MSG_RESULT($LINKFORSHARED)
Expand Down