This file contains hidden or 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
| commit 6fac225de0575b18550f9421196f90a2279c44af | |
| Author: Tiago Koji Castro Shibata <tiago.shibata@gmail.com> | |
| Date: Fri Dec 28 23:13:14 2018 -0200 | |
| Fix compilation with latest OpenCV | |
| C APIs were removed and must be replaced with C++ calls | |
| diff --git a/Makefile b/Makefile | |
| index 63e15e6..c148d4b 100644 |
This file contains hidden or 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
| diff --git a/drivers/media/usb/uvc/Makefile b/drivers/media/usb/uvc/Makefile | |
| index c26d12f..d86cf22 100644 | |
| --- a/drivers/media/usb/uvc/Makefile | |
| +++ b/drivers/media/usb/uvc/Makefile | |
| @@ -1,4 +1,5 @@ | |
| # SPDX-License-Identifier: GPL-2.0 | |
| +CONFIG_MODULE_SIG=n | |
| uvcvideo-objs := uvc_driver.o uvc_queue.o uvc_v4l2.o uvc_video.o uvc_ctrl.o \ | |
| uvc_status.o uvc_isight.o uvc_debugfs.o uvc_metadata.o | |
| ifeq ($(CONFIG_MEDIA_CONTROLLER),y) |
This file contains hidden or 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
| library IEEE; | |
| use IEEE.STD_LOGIC_1164.ALL; | |
| entity sort is port ( | |
| -- external interface | |
| clk, reset: in STD_LOGIC; | |
| n: in STD_LOGIC_VECTOR(3 downto 0); | |
| sorted: out STD_LOGIC_VECTOR(31 downto 0) | |
| ); end; |
This file contains hidden or 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
| # | |
| # Automatically generated file; DO NOT EDIT. | |
| # Linux/arm64 4.4.38 Kernel Configuration | |
| # | |
| CONFIG_ARM64=y | |
| # CONFIG_ARCH_TEGRA_210_SOC is not set | |
| CONFIG_ARCH_TEGRA_APE=y | |
| CONFIG_ARCH_TEGRA_18x_SOC_PRIVATE=y | |
| CONFIG_ARCH_TEGRA_18x_SOC=y | |
| CONFIG_ARCH_TEGRA_19x_SOC=y |
This file contains hidden or 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
| Name: cub | |
| Description: A flexible library of cooperative threadblock primitives and other utilities for CUDA kernel programming. | |
| Requires: | |
| Version: 1.7.4 | |
| Libs: | |
| Cflags: -I/usr/include/cub |
This file contains hidden or 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
| pkgname=cub | |
| pkgver=1.7.4 | |
| pkgrel=1 | |
| pkgdesc="A flexible library of cooperative threadblock primitives and other utilities for CUDA kernel programming." | |
| arch=('any') | |
| url='http://nvlabs.github.com/cub/' | |
| license=('New BSD') | |
| makedepends=() | |
| optdepends=('cuda') |
This file contains hidden or 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
| package br.com.sistemadevendas.servlet; | |
| import java.io.IOException; | |
| import javax.servlet.RequestDispatcher; | |
| import javax.servlet.ServletConfig; | |
| import javax.servlet.ServletException; | |
| import javax.servlet.annotation.WebServlet; | |
| import javax.servlet.http.HttpServlet; | |
| import javax.servlet.http.HttpServletRequest; |
This file contains hidden or 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
| FROM khaledhassan/simplescalar | |
| MAINTAINER Tiago Koji Castro Shibata <tiago.shibata@gmail.com> | |
| COPY simplesim-pisa-cross-endian.patch /simplescalar | |
| RUN cd /simplescalar && patch -p1 < simplesim-pisa-cross-endian.patch | |
| RUN cd /simplescalar/simplesim-3.0 \ | |
| && find -maxdepth 1 -executable -type f -name 'sim-*' -printf '%P\n' | \ | |
| while read f ; do mv $f pisa-$f ; done | |
| RUN cd /simplescalar/simplesim-3.0 && make clean && make config-pisabig && make \ |
This file contains hidden or 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
| tiago@shibata-sm:~/code/appium-android-bootstrap/bootstrap (master)$ mvn help:all-profiles | |
| Picked up _JAVA_OPTIONS: -Dawt.useSystemAAFontSettings=gasp -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel | |
| [INFO] Scanning for projects... | |
| [WARNING] | |
| [WARNING] Some problems were encountered while building the effective model for io.appium.android:bootstrap:jar:1.0.0-SNAPSHOT | |
| [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 31, column 21 | |
| [WARNING] | |
| [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. | |
| [WARNING] | |
| [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. |
NewerOlder