-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
88 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
, orc | ||
, boost | ||
, spdlog | ||
, swig | ||
, mpir | ||
, doxygen | ||
, python | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
diff --git i/host/tests/CMakeLists.txt w/host/tests/CMakeLists.txt | ||
index f40c252ad..b8a07d341 100644 | ||
--- i/host/tests/CMakeLists.txt | ||
+++ w/host/tests/CMakeLists.txt | ||
@@ -453,12 +453,6 @@ UHD_ADD_NONAPI_TEST( | ||
index bac599811..267f8e602 100644 | ||
--- a/host/tests/CMakeLists.txt | ||
+++ b/host/tests/CMakeLists.txt | ||
@@ -517,12 +517,6 @@ UHD_ADD_NONAPI_TEST( | ||
${UHD_SOURCE_DIR}/lib/utils/compat_check.cpp | ||
) | ||
|
||
-UHD_ADD_NONAPI_TEST( | ||
- TARGET "xport_adapter_ctrl_test.cpp" | ||
- EXTRA_SOURCES | ||
- ${UHD_SOURCE_DIR}/lib/usrp/cores/xport_adapter_ctrl.cpp | ||
-) | ||
- | ||
######################################################################## | ||
# demo of a loadable module | ||
######################################################################## | ||
UHD_ADD_NONAPI_TEST( | ||
TARGET "custom_reg_test.cpp" | ||
EXTRA_SOURCES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
lib, | ||
stdenv, | ||
fetchFromGitHub, | ||
autoconf, | ||
automake, | ||
libtool, | ||
bison, | ||
pcre, | ||
}: | ||
|
||
stdenv.mkDerivation (finalAttrs: { | ||
pname = "swig"; | ||
version = "3.0.12"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "swig"; | ||
repo = "swig"; | ||
rev = "rel-${finalAttrs.version}"; | ||
sha256 = "1wyffskbkzj5zyhjnnpip80xzsjcr3p0q5486z3wdwabnysnhn8n"; | ||
}; | ||
|
||
# Not using autoreconfHook because it fails due to missing macros, contrary | ||
# to this script | ||
preConfigure = '' | ||
./autogen.sh | ||
''; | ||
|
||
nativeBuildInputs = [ | ||
autoconf | ||
automake | ||
libtool | ||
bison | ||
]; | ||
buildInputs = [ | ||
pcre | ||
]; | ||
|
||
configureFlags = [ | ||
"--without-tcl" | ||
]; | ||
|
||
# Disable ccache documentation as it needs yodl | ||
postPatch = '' | ||
sed -i '/man1/d' CCache/Makefile.in | ||
''; | ||
|
||
meta = { | ||
description = "Interface compiler that connects C/C++ code to higher-level languages"; | ||
homepage = "https://swig.org/"; | ||
# Different types of licenses available: http://www.swig.org/Release/LICENSE . | ||
license = lib.licenses.gpl3Plus; | ||
platforms = lib.platforms.unix; | ||
maintainers = with lib.maintainers; [ doronbehar ]; | ||
}; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ let | |
volk | ||
logLib | ||
python | ||
qwt | ||
; | ||
inherit mkDerivationWith mkDerivation; | ||
inherit gnuradio; | ||
|