Hi all,

We are using Linaro 13.03 
toolchain(gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux We are 
trying to execute a simple test code to check whether ARM assembly code 
executes on board or not. Execution is on Arndale Board. Every time We include 
assembly function, We get segmentation fault.  Kindly check if I We are missing 
any arm related flags in makefile.

We have attached the 'helloworld' test code and makefile.

Regards,
Vishwa




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================

Attachment: Makefile.linux_test
Description: Makefile.linux_test

Attachment: test_arndale.s
Description: test_arndale.s

#include <stdio.h>

#ifdef ARM_ASM_TEST
void sTestArnDale();
#endif
int main()
{
        printf("\nHello World\n");
        
#ifdef ARM_ASM_TEST
                sTestArnDale();
#endif  
        return 0;
}
_______________________________________________
linaro-toolchain mailing list
linaro-toolchain@lists.linaro.org
http://lists.linaro.org/mailman/listinfo/linaro-toolchain

Reply via email to