Coder Social home page Coder Social logo

advancedgcc's Introduction

AdvanceGCC

This is the collection of confusing but common tips in C-lang, gcc, make and ld.

Preparations && Build

# version: 9.2.0
docker run -it -v $(pwd):/home/me -w /home/me --rm gcc
# inside docker
make
# When you run all sample programs..
make run

If you want to erase this, make clean.

tips

ar

stdin_compile

Makefile

Reference

Implicit rules

For more details, see the link:

  • $(CC) -c $(CPPFLAGS) $(CFLAGS) in C -> object file

  • $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) in C++ -> object file

  • $(CC) $(LDFLAGS) $(TARGET_ARCH) $^ $(LOADLIBES) -o $@ in C -> exec file

  • $(AS) $(ASFLAGS) in asm

  • $(CC) $(LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@ in linker. The ar directory uses implicit rule on link

PHONY

# Makefile
compile_switch:
	make -C compile_switch
make compile_switch
make: 'compile_switch' is up to date.

This is because compile_switch directory has been already created before make compile_swtich.

To avoid this, write .PHONY compile_switch and you can fully compile this.

Misc

  • If docker container was freezed, type Ctrl-C.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.