LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 04-26-2013, 01:56 AM   #1
PeterUK
Member
 
Registered: May 2009
Posts: 281

Rep: Reputation: 16
Slackware- Help linking libraries STM32F4


Hi Guys!

I having problem getting working a tool chain for STM32F4 for whom dont know this is an ARM processor.

I did have to spend some time getting some packed in. I had to install some package from 13.xxsomething for my 14 current version using. (I will add details later to review this installation due to is not what I am asking now)

I know what is wrong but I dont know how to fix it.

The problem is that when I try to compile it does not see the files:

when I do make I get:

Code:
make -C lib
make[1]: Entering directory `/stm32f4/lib'
arm-none-eabi-gcc -g -O2 -Wall -mlittle-endian -mthumb -mcpu=cortex-m4 -mthumb-interwork -mfloat-abi=hard -mfpu=fpv4-sp-d16 -ffreestanding -nostdlib -Iinc -Iinc/core -Iinc/peripherals -c -o misc.o src/peripherals/misc.c
make[1]: arm-none-eabi-gcc: Command not found
make[1]: *** [misc.o] Error 127
make[1]: Leaving directory `/stm32f4/lib'
make: *** [lib] Error 2
What I have done:
I looked for arm-none-eabi-gcc I know where is:
it storage on roo/sat/bin

if I called in a terminal I get:

Code:
bash-4.2# ./arm-none-eabi-gcc --version
arm-none-eabi-gcc (Linaro GCC 4.7-2013.01) 4.7.3 20130102 (prerelease)
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
I have created a link to bin folder and added to the project but it can not see it.

I also have changed the makefile by modifying:

Code:
###################################################

#CC=arm-none-eabi-gcc
CC=/bin/arm-none-eabi-gcc
#OBJCOPY=arm-none-eabi-objcopy
OBJCOPY=/bin/arm-none-eabi-objcopy
But it does not seen to work also.

I know in Ubuntu I will do it by exporting the path how do I do it in Slackware? Can it be done without setting the environmental path?
 
Old 04-26-2013, 03:21 AM   #2
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,260

Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
in a terminal, and in top source, try (presuming bash)

export PATH=/root/sat/bin:$PATH;
export CC=/root/sat/bin/arm-none-eabi-gcc
make

If you use another shell, adjust accordingly, but you get the idea.
 
Old 04-26-2013, 06:53 AM   #3
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by business_kid View Post
in a terminal, and in top source, try (presuming bash)

export PATH=/root/sat/bin:$PATH;
export CC=/root/sat/bin/arm-none-eabi-gcc
make

If you use another shell, adjust accordingly, but you get the idea.
Thanks business_kid for your input. (I have some more question about it, but it does work it link this way)

I want to write here to see if you could help with something else, I am trying to compile also Openocd as this link:
Code:
http://linuxfreak.pl/elektronika/debugging-stm32-cortex-m3-microcontroller-using-eclipse-on-slackware/
I have got openocd from here:

Code:
http://sourceforge.net/p/openocd/code/ci/master/tree/
I cloned on a folder and then run in a terminal
./bootstrap
then
./configure --enable-ft2232_libftdi --enable-usbprog
then make
but I am getting this error:

Code:
rm -rf $backupdir; exit $rc
openocd.texi:12: @include `version.texi': No such file or directory.
openocd.texi:37: warning: undefined flag: VERSION.
openocd.texi:38: warning: undefined flag: UPDATED.
openocd.texi:58: warning: undefined flag: VERSION.
openocd.texi:59: warning: undefined flag: UPDATED.
makeinfo: Removing output file `openocd.info' due to errors; use --force to preserve.

make[2]: *** [openocd.info] Error 1
make[2]: Leaving directory `/home/..bla bla bla../openOCD/openocd-code/doc'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/..bla bla bla../openOCD/openocd-code'
make: *** [all] Error 2
Do you know what is it wrong?
 
Old 04-26-2013, 10:32 AM   #4
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Hi! I think I fix it but I am not sure because its not working

I am getting the following error:


Quote:
Debug: 203 15 ft2232.c:2346 ft2232_init(): ft2232 interface using shortest path jtag state transitions
Debug: 204 15 ft2232.c:2233 ft2232_init_libftdi(): 'ft2232' interface using libftdi with 'stm32stick' layout (0483:3748)
Error: 205 304 ft2232.c:2252 ft2232_init_libftdi(): unable to open ftdi device: device not found
Debug: 206 304 command.c:631 run_command(): Command failed with error code -100
User : 207 305 command.c:669 command_run_line(): in procedure 'init'
Its like cannot open the device?

I create my own cfg file

Quote:
interface ft2232
ft2232_device_desc "ST-LINK/V2"
ft2232_layout stm32stick
ft2232_vid_pid 0x0483 0x3748
And I am using:

target script:

Quote:
# script for stm32f4x family

if { [info exists CHIPNAME] } {
set _CHIPNAME $CHIPNAME
} else {
set _CHIPNAME stm32f4x
}

if { [info exists ENDIAN] } {
set _ENDIAN $ENDIAN
} else {
set _ENDIAN little
}

# Work-area is a space in RAM used for flash programming
# By default use 64kB
if { [info exists WORKAREASIZE] } {
set _WORKAREASIZE $WORKAREASIZE
} else {
set _WORKAREASIZE 0x10000
}

# JTAG speed should be <= F_CPU/6. F_CPU after reset is 8MHz, so use F_JTAG = 1MHz
#
# Since we may be running of an RC oscilator, we crank down the speed a
# bit more to be on the safe side. Perhaps superstition, but if are
# running off a crystal, we can run closer to the limit. Note
# that there can be a pretty wide band where things are more or less stable.
adapter_khz 1000

adapter_nsrst_delay 100
jtag_ntrst_delay 100

#jtag scan chain
if { [info exists CPUTAPID] } {
set _CPUTAPID $CPUTAPID
} else {
# See STM Document RM0090
# Section 32.6.2 - corresponds to Cortex-M4 r0p1
set _CPUTAPID 0x4ba00477
}
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID

if { [info exists BSTAPID] } {
set _BSTAPID $BSTAPID
} else {
# See STM Document RM0090
# Section 32.6.3
set _BSTAPID 0x06413041
}
jtag newtap $_CHIPNAME bs -irlen 5 -expected-id $_BSTAPID

set _TARGETNAME $_CHIPNAME.cpu
target create $_TARGETNAME cortex_m3 -endian $_ENDIAN -chain-position $_TARGETNAME

$_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0

set _FLASHNAME $_CHIPNAME.flash
flash bank $_FLASHNAME stm32f2x 0 0 0 0 $_TARGETNAME

# if srst is not fitted use SYSRESETREQ to
# perform a soft reset
cortex_m3 reset_config sysresetreq
But I think there is something wrong because its not a M3 cortex if not a M4
 
Old 04-26-2013, 11:35 AM   #5
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,260

Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
Peter, I'm up to my neck in my own project. Yours looks interesting, but . . .

BTW, Fedora do an Electronic Spin. I have it, and it has all sorts of arm goodies compiled and sitting there ready to be used. FC-18 is a right royal bitch to install, but the Electronic spin is good.Comment 33 on this shows how I finally got going. I ended up booting on a slackware-huge kernel to remake the initrd so the thing would boot. I wish you better luck.
 
Old 04-27-2013, 01:24 AM   #6
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by business_kid View Post
Peter, I'm up to my neck in my own project. Yours looks interesting, but . . .

BTW, Fedora do an Electronic Spin. I have it, and it has all sorts of arm goodies compiled and sitting there ready to be used. FC-18 is a right royal bitch to install, but the Electronic spin is good.Comment 33 on this shows how I finally got going. I ended up booting on a slackware-huge kernel to remake the initrd so the thing would boot. I wish you better luck.
Hi1 Business_kid thank for looking anyway! ;-).

For the rest which have some knowledge of what I am doing feel free to comment :-/ .

I though I give an Update here, last night after getting stuck on no being able to talk to the board through Openocd I use a VM and lest than 5 minutes I can talk to the board and programe it through the stlink Utility software, I have to say that I did also try with 11.xxsomething ubuntu machine and that is one of the thing I have to say bad about slackware it should have a faster way to get the package in. I just type openocd in, and done, use Synaptic to look for depended folder and and files and in lest than 5 minutes I was trying to connect to the board at to the point where I did in Slackware which I spent hours to get to the same point.

After all that jut to say the hardware is working so for sure is a system/driver problem. Now I have something working through the VM I am going to get back and try to play with the files I could not install the latest to see if that fix this problem..

Feel free to comment ...
 
Old 04-27-2013, 01:57 AM   #7
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by business_kid View Post
in a terminal, and in top source, try (presuming bash)

export PATH=/root/sat/bin:$PATH;
export CC=/root/sat/bin/arm-none-eabi-gcc
make

If you use another shell, adjust accordingly, but you get the idea.
Sorry if I asked you about this, the reason this add the path in the terminal, but what about if I want this to be able from any terminal I open. If there a file which it can be added and always be available from any terminal? Thanks
 
Old 04-27-2013, 06:49 AM   #8
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
UPDATE:
I've manage to connect through the USB cable to ARM board. I had to review openocd option because that interface mention before (hla) was not up. and I had to change some cfg files path too.

If I do:

Quote:
./openocd --file /tcl/board/stm32f4discovery.cfg -c init -c reset
I get:

Quote:
bash-4.2# ./openocd --file /tcl/board/stm32f4discovery.cfg -c init -c reset
Open On-Chip Debugger 0.7.0-rc1-dev-00002-ge12989a (2013-04-27-11:36)
Licensed under GNU GPL v2
For bug reports, read
http://openocd.sourceforge.net/doc/doxygen/bugs.html
srst_only separate srst_nogate srst_open_drain connect_deassert_srst
Info : This adapter doesn't support configurable speed
Info : STLINK v2 JTAG v14 API v2 SWIM v0 VID 0x0483 PID 0x3748
Info : Target voltage: 2.888758
Info : stm32f4x.cpu: hardware has 6 breakpoints, 4 watchpoints
But still not there .... :-(

When I try to send something now

I get:

Quote:
bash-4.2# arm-none-eabi-gdb main.elf
GNU gdb (Linaro GDB) 7.5-2012.12-1
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "--host=i686-pc-linux-gnu --target=arm-none-eabi".
For bug reporting instructions, please see:
<http://bugs.launchpad.net/gdb-linaro/>...
Reading symbols from /home/bla bla bla/stm32f4-discovery/main.elf...done.
(gdb)
If should do something like:
Quote:
(gdb)target extended-remote :3333
But it just hang there! :-( What is it wrong?
 
Old 04-27-2013, 08:46 AM   #9
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,260

Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
Quote:
This GDB was configured as "--host=i686-pc-linux-gnu --target=arm-none-eabi".
Go back to building gdb. At the configure stage there is --host(=the box it's going to be running on) --target(= the box it's going to be debugging, I imagine)

You need to configure it --host=arm-none-eabi --target=arm-none-eabi along with your other options
and rewinstall it completely, before you can debug on the arm.
 
Old 04-27-2013, 12:47 PM   #10
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by business_kid View Post
Go back to building gdb. At the configure stage there is --host(=the box it's going to be running on) --target(= the box it's going to be debugging, I imagine)

You need to configure it --host=arm-none-eabi --target=arm-none-eabi along with your other options
and rewinstall it completely, before you can debug on the arm.
I dont think I even configure gdb I looked there is installed gdb-7.5-i486-1 but that was there I didnt installed.

Regarding arm_tool_chain. I looked and the only thing I did was = ./summon-arm-toolchain from
https://github.com/esden/summon-arm-toolchain

I looked and there is not option for host. But the Arm is connected to the PC by USB cable so the hist should not be the PC?
 
Old 04-27-2013, 01:55 PM   #11
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by business_kid View Post
Go back to building gdb. At the configure stage there is --host(=the box it's going to be running on) --target(= the box it's going to be debugging, I imagine)

You need to configure it --host=arm-none-eabi --target=arm-none-eabi along with your other options
and rewinstall it completely, before you can debug on the arm.
Do you actually mean openocd? I cannot see anything about on the tool chain for arm-none-eabi

But in openocd said something about the host but I try to reconfig with:

Quote:
./configure --enable-maintainer-mode --enable-stlink --enable-ft2232_libftdi --enable-ftdi --enable-usbprog --build=i686-pc-linux-gnu --host=arm-none-eabi CC=/root/sat/bin/arm-none-eabi-gcc
and if fails for compiling issues, if I leave out:
CC=/root/sat/bin/arm-none-eabi-gcc CPP=/root/sat/bin/arm-none-eabi-gcc

its give error earlier.

without CC and CPP

Quote:
ost System...arm-none-eabi
Build System...i686-pc-linux-gnu
Error: Could not find a C compiler. Tried: arm-none-eabi-cc, arm-none-eabi-gcc
Try: 'configure --help' for options
and with CC and CCP trying to force the compiler:

Quote:
checking whether the C compiler works... no
configure: error: in `/opt/openocd-codepress':
configure: error: C compiler cannot create executables
I am not sure know how to force all the flags manually. :-(
 
Old 04-28-2013, 09:53 AM   #12
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,260

Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
I probably do mean opencd.
Quote:
./configure --enable-maintainer-mode --enable-stlink --enable-ft2232_libftdi --enable-ftdi --enable-usbprog --build=i686-pc-linux-gnu --host=arm-none-eabi CC=/root/sat/bin/arm-none-eabi-gcc
That bit is wrong. If you're running on arm --build = --host. The --build=i686-pc-linux-gnu builds a debugger to run on x86 to debug arm
 
Old 04-28-2013, 10:26 AM   #13
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by business_kid View Post
I probably do mean opencd.


That bit is wrong. If you're running on arm --build = --host. The --build=i686-pc-linux-gnu builds a debugger to run on x86 to debug arm
I did play with different configuration to the ./config file, but I cannot get it running. The problem is that it cannot see the compiler which is on /root/sat/bin/arm-none-eabi-gcc if I leave out that option it does:

Quote:
bash-4.2# ./configure --enable-maintainer-mode --enable-stlink --enable-ft2232_libftdi --enable-ftdi --enable-usbprog --host=arm-none-eabi
checking for a BSD-compatible install... /usr/bin/ginstall -c
checking whether build environment is sane... yes
checking for arm-none-eabi-strip... no
checking for strip... strip
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for arm-none-eabi-gcc... no
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for gcc option to accept ISO C99... -std=gnu99
checking whether gcc -std=gnu99 and cc understand -c and -o together... yes
checking for arm-none-eabi-ranlib... no
checking for ranlib... ranlib
checking build system type... i686-pc-linux-gnu
checking host system type... arm-none-eabi
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc -std=gnu99... /usr/i486-slackware-linux/bin/ld
checking if the linker (/usr/i486-slackware-linux/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... no
checking for arm-none-eabi-dumpbin... no
checking for arm-none-eabi-link... no
checking for dumpbin... no
checking for link... link -dump
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert i686-pc-linux-gnu file names to arm-none-eabi format... func_convert_file_noop
checking how to convert i686-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/i486-slackware-linux/bin/ld option to reload object files... -r
checking for arm-none-eabi-objdump... no
checking for objdump... objdump
checking how to recognize dependent libraries... unknown
checking for arm-none-eabi-dlltool... no
checking for dlltool... dlltool
checking how to associate runtime and link libraries... printf %s\n
checking for arm-none-eabi-ar... no
checking for ar... ar
checking for archiver @FILE support... @
checking for arm-none-eabi-strip... strip
checking for arm-none-eabi-ranlib... ranlib
checking command to parse nm output from gcc -std=gnu99 object... ok
checking for sysroot... no
checking for arm-none-eabi-mt... no
checking for mt... mt
checking if mt is a manifest tool... no
checking how to run the C preprocessor... gcc -std=gnu99 -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc -std=gnu99 supports -fno-rtti -fno-exceptions... no
checking for gcc -std=gnu99 option to produce PIC... -fPIC -DPIC
checking if gcc -std=gnu99 PIC flag -fPIC -DPIC works... yes
checking if gcc -std=gnu99 static flag -static works... yes
checking if gcc -std=gnu99 supports -c -o file.o... yes
checking if gcc -std=gnu99 supports -c -o file.o... (cached) yes
checking whether the gcc -std=gnu99 linker (/usr/i486-slackware-linux/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... no
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... no
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for an ANSI C-conforming const... yes
checking for long long int... yes
checking for library containing ioperm... none required
checking for library containing dlopen... -ldl
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking for arpa/inet.h... yes
checking elf.h usability... yes
checking elf.h presence... yes
checking for elf.h... yes
checking dirent.h usability... yes
checking dirent.h presence... yes
checking for dirent.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking for ifaddrs.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking for netinet/in.h... yes
checking for netinet/tcp.h... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for strings.h... (cached) yes
checking sys/ioctl.h usability... yes
checking sys/ioctl.h presence... yes
checking for sys/ioctl.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/poll.h usability... yes
checking sys/poll.h presence... yes
checking for sys/poll.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking for sys/stat.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking for net/if.h... yes
checking whether to enable assertions... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether byte ordering is bigendian... no
checking for strndup... yes
checking for strnlen... yes
checking for gettimeofday... yes
checking for usleep... yes
checking for vasprintf... yes
checking whether to build a release... no
checking whether to build Doxygen as HTML... yes
checking whether to build Doxygen as PDF... no
checking whether to enable verbose JTAG I/O messages... no
checking whether to enable verbose USB I/O messages... no
checking whether to enable verbose USB communication messages... no
checking whether to enable malloc free space logging... no
checking whether to enable ZY1000 minidriver... no
checking whether to enable dummy minidriver... no
checking whether standard drivers can be built... yes
checking Build & Link with libftdi...... Success
checking for libftdi highspeed device support... yes
checking for libftdi FT232H device support... no
configure: WARNING: You need a newer libftdi version (0.20 or later).
checking libusb-1.0/libusb.h usability... yes
checking libusb-1.0/libusb.h presence... yes
checking for libusb-1.0/libusb.h... yes
checking usb.h usability... yes
checking usb.h presence... yes
checking for usb.h... yes
checking for environ in unistd.h and stdlib.h... yes
checking for a C compiler for build tools... gcc -std=gnu99
checking for suffix of executable build tools...
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating src/helper/Makefile
config.status: creating src/jtag/Makefile
config.status: creating src/jtag/drivers/Makefile
config.status: creating src/jtag/hla/Makefile
config.status: creating src/transport/Makefile
config.status: creating src/xsvf/Makefile
config.status: creating src/svf/Makefile
config.status: creating src/target/Makefile
config.status: creating src/rtos/Makefile
config.status: creating src/server/Makefile
config.status: creating src/flash/Makefile
config.status: creating src/flash/nor/Makefile
config.status: creating src/flash/nand/Makefile
config.status: creating src/pld/Makefile
config.status: creating doc/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
=== configuring in jimtcl (/opt/openocd-codepress/jimtcl)
configure: running /bin/sh ./configure.gnu --disable-option-checking '--prefix=/usr/local' '--enable-maintainer-mode' '--enable-stlink' '--enable-ft2232_libftdi' '--enable-ftdi' '--enable-usbprog' '--host=arm-none-eabi' 'host_alias=arm-none-eabi' --cache-file=/dev/null --srcdir=.
Host System...arm-none-eabi
Build System...i686-pc-linux-gnu
Error: Could not find a C compiler. Tried: arm-none-eabi-cc, arm-none-eabi-gcc
Try: 'configure --help' for options
configure: error: ./configure.gnu failed for jimtcl

If I added it fail much earlier:

Quote:
bash-4.2# ./configure --enable-maintainer-mode --enable-stlink --enable-ft2232_libftdi --enable-ftdi --enable-usbprog --host=arm-none-eabi CC=/root/sat/bin/
checking for a BSD-compatible install... /usr/bin/ginstall -c
checking whether build environment is sane... yes
checking for arm-none-eabi-strip... no
checking for strip... strip
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for arm-none-eabi-gcc... /root/sat/bin/
checking whether the C compiler works... no
configure: error: in `/opt/openocd-codepress':
configure: error: C compiler cannot create executables
See `config.log' for more details
 
Old 04-29-2013, 04:35 AM   #14
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,260

Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
you can do

export CC=/path/to/compiler

and check the Makefile makes use of $CC.
 
Old 05-27-2013, 11:43 AM   #15
PeterUK
Member
 
Registered: May 2009
Posts: 281

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by business_kid View Post
you can do

export CC=/path/to/compiler

and check the Makefile makes use of $CC.
Sorry I am late getting back to this!

I have tried adding into the terminal

Code:
export CC=/root/sat/bin
That is where its "arm-none-eabi-gcc"

but the terminal response is the same as before:

Code:
./configure --enable-maintainer-mode --enable-stlink --enable-ft2232_libftdi --enable-ftdi --enable-usbprog --host=arm-none-eabi
checking for a BSD-compatible install... /usr/bin/ginstall -c
checking whether build environment is sane... yes
checking for arm-none-eabi-strip... no
checking for strip... strip
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for arm-none-eabi-gcc... /root/sat/bin
checking whether the C compiler works... no
configure: error: in `/tmp/Install/stlink_from0/openocd/openocd-codepress':
configure: error: C compiler cannot create executables
See `config.log' for more details
Stop in the compiling checks I looks a makefile was before adding the path and looking a CC I see:

Code:
CC = gcc -std=gnu99
CCDEPMODE = depmode=gcc3
CC_FOR_BUILD = gcc -std=gnu99
CPP = gcc -std=gnu99 -E
ac_ct_CC = gcc
# make sure we pass the correct jimtcl flags to distcheck
DISTCHECK_CONFIGURE_FLAGS = --disable-install-jim
nobase_dist_pkgdata_DATA = \
	contrib/libdcc/dcc_stdio.c \
	contrib/libdcc/dcc_stdio.h \
	contrib/libdcc/example.c \
	contrib/libdcc/README \
	contrib/openocd.udev
But this is the makefile, Should we be looking at config files?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Cmake, linking libraries yfaye Programming 1 04-08-2009 06:13 PM
Linking libraries. Gamma_User Linux - Newbie 1 01-19-2009 05:24 PM
linking static libraries??? birjodh Linux - General 1 06-07-2007 11:02 PM
Linking old libraries to new one? winterhunter Linux - Software 7 10-24-2005 04:37 AM
Linking program with .a libraries rudy2 Programming 2 04-22-2005 05:36 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 11:03 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration