编译uboot时出现如下错误,求大神告知!!!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编译uboot时出现如下错误,求大神告知!!!相关的知识,希望对你有一定的参考价值。

HOSTCC scripts/basic/fixdep
HOSTCC scripts/kconfig/conf.o
HOSTCC scripts/kconfig/zconf.tab.o
HOSTLD scripts/kconfig/conf
scripts/kconfig/conf --silentoldconfig Kconfig
CHK include/config.h
GEN include/autoconf.mk
cc1: error: bad value (armv5) for -march= switch
make[2]: *** [include/autoconf.mk] 错误 1
make[1]: *** [silentoldconfig] 错误 1
make: *** 没有规则可以创建“include/config/uboot.release”需要的目标“include/config/auto.conf”。 停止。
交叉编译器没问题,make distclean了,重新config也不行!!!

参考技术A 没有指定交叉编译器,定义Makefile中CROSS_COMPILE

模拟静态方法时出现内容类型错误

【中文标题】模拟静态方法时出现内容类型错误【英文标题】:Content type error when mocking static method 【发布时间】:2019-03-24 13:22:12 【问题描述】:

我正在尝试测试控制器内的方法。 如果我注释掉在我正在测试的方法中调用的静态方法中的逻辑,则测试通过。

我无法评论该逻辑,而只是想模拟它。现在模拟工作, 但我得到一个新的错误如下:

java.lang.AssertionError:未设置内容类型

但我确实指明了内容类型。请告知我做错了什么。

@Test
public void testMethod() throws Exception

    // If I don't mock this, test will fail. 
    // If I don't mock this comment out logic in this method, test passes. 
    // If I mock this, test passes if I don't check for content type.
    // I am using Power Mockito. 

    mockStatic(MyStaticClass.class);
    doReturn("").when(MyStaticClass.class, "someMethod", any(Config.class), anyString());

    //also tried this, works. 
    //when(MyStaticClass.someMethod(any(Config.class), anyString())).thenReturn("");


    //as mentioned above this would work if I comment out logic in MyStaticClass. 
    mockMvc.perform(
                get("/api/some/a/b/c/d").accept(
                        MediaType.APPLICATION_JSON))
                .andExpect(status().isForbidden())
                .andExpect(content().contentType("text/html")); // when I mock, I need to comment this out to get test to work.  




// Controller 

@RequestMapping(value = "/a/b/c", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) // I do have content type
@ResponseBody
public MyResponse getSomething(
            HttpServletRequest request, HttpServletResponse response,
            @PathVariable String a, @PathVariable String b,
            @PathVariable String c,
            @RequestParam(value = "some", required = false) String some)
            throws Exception 

            // some logic 

            //static method being called
            MyStaticClass.someMethod("sample", "sample2");

            try 
                MyResponse myPageResponse = new MyResponse(anotherStr, someStr); // it breaks here and throws that error msg. Doesn't reach return.
                return MyResponse;
             catch (NullPointerException npe) 

【问题讨论】:

【参考方案1】:

这是一个获取请求,它没有正文,因此理想情况下使用 contentType("text/html") 指定内容类型标头可能不是正确的方法。 其次 您在请求中的 content-type 标头必须与 @consumes 值匹配,它清楚地表明您希望发送 text/html 但没有 @consumes 支持。

【讨论】:

嗨,你的意思是理想情况下我不应该这样做吗? -> .andExpect(content().contentType("text/html")); ? 理想情况下 Get 请求没有正文,因此 contentType 没有意义,但即使您想实现它,您也必须使用 @consumes 添加相同的代码(类似于你已经在代码中使用过produce)。 请您通过***.com/questions/5661596/… 如果您觉得这很有用,请点赞并接受答案:) 感谢您的回答。有道理。

以上是关于编译uboot时出现如下错误,求大神告知!!!的主要内容,如果未能解决你的问题,请参考以下文章

安装openstack验证keystone时出现错误怎么处理,求大神处理

MATLAB/Simulink仿真时出现下边错误 这是哪里出错了啊 不太懂 求大神指点一二 不胜感激

office2016激活不了怎么办,激活程序出现错误,求大神告知解决方法

安装cygwin中的make时出现了一下错误,应该怎么办啊,求大神解决!

安装arm-linux-gcc编译器时出现错误,请大神看看怎么回事

使用Matlab训练神经网络时出现“此类型的变量不支持使用点进行索引”,是为什么?求大神指教